mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-12-02 13:29:23 -06:00
11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
import { PluginType } from './plugin.type'
|
|
|
|
export interface PeertubePluginIndexList {
|
|
start: number
|
|
count: number
|
|
sort: string
|
|
pluginType?: PluginType
|
|
currentPeerTubeEngine?: string
|
|
search?: string
|
|
}
|