]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/plugin-index/peertube-plugin-index.model.ts
Add server hooks for listing subscription
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / plugin-index / peertube-plugin-index.model.ts
1 export interface PeerTubePluginIndex {
2 npmName: string
3 description: string
4 homepage: string
5 createdAt: Date
6 updatedAt: Date
7
8 popularity: number
9
10 latestVersion: string
11
12 official: boolean
13
14 name?: string
15 installed?: boolean
16 }