blob: 817bac31efc7f4a2224286e3f25f57bceef48f32 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { PluginType } from './plugin.type'
export interface PeertubePluginIndexList {
start: number
count: number
sort: string
pluginType?: PluginType
currentPeerTubeEngine?: string
search?: string
}
|