peertube-plugin-index-list.model.ts 214 B

12345678910
  1. import { PluginType } from '../plugin.type'
  2. export interface PeertubePluginIndexList {
  3. start: number
  4. count: number
  5. sort: string
  6. pluginType?: PluginType
  7. currentPeerTubeEngine?: string
  8. search?: string
  9. }