]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/peertube-plugin.model.ts
e3c10002736b1d377ff0191616776a9c55ac3727
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / peertube-plugin.model.ts
1 export interface PeerTubePlugin {
2 name: string
3 type: number
4 latestVersion: string
5 version: string
6 enabled: boolean
7 uninstalled: boolean
8 peertubeEngine: string
9 description: string
10 homepage: string
11 settings: { [ name: string ]: string }
12 createdAt: Date
13 updatedAt: Date
14 }