peertube-plugin.model.ts 345 B

12345678910111213141516
  1. import { PluginType } from '../../plugin.type'
  2. export interface PeerTubePlugin {
  3. name: string
  4. type: PluginType
  5. latestVersion: string
  6. version: string
  7. enabled: boolean
  8. uninstalled: boolean
  9. peertubeEngine: string
  10. description: string
  11. homepage: string
  12. settings: { [ name: string ]: string }
  13. createdAt: Date
  14. updatedAt: Date
  15. }