PeerTube_original/shared/models/plugins/peertube-plugin-list.model.ts
2019-07-24 10:58:16 +02:00

11 lines
208 B
TypeScript

import { PluginType } from './plugin.type'
export interface PeertubePluginList {
start: number
count: number
sort: string
pluginType?: PluginType
currentPeerTubeEngine?: string
search?: string
}