2
1

peertube-plugin-index.model.ts 243 B

12345678910111213141516
  1. export interface PeerTubePluginIndex {
  2. npmName: string
  3. description: string
  4. homepage: string
  5. createdAt: Date
  6. updatedAt: Date
  7. popularity: number
  8. latestVersion: string
  9. official: boolean
  10. name?: string
  11. installed?: boolean
  12. }