1
0
Fork 0
peertube/shared/models/plugins/peertube-plugin-list.model.ts

11 lines
208 B
TypeScript
Raw Normal View History

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