]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/peertube-plugin-index.model.ts
Begin support for external auths
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / 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 name?: string
13 installed?: boolean
14 }