blob: ecb46482ea11e047de69fc639ff252bc77a7ff8c (
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
}
|