WIP plugins: add plugin settings/uninstall in client
[oweals/peertube.git] / shared / models / plugins / peertube-plugin.model.ts
1 export interface PeerTubePlugin {
2   name: string
3   type: number
4   version: string
5   enabled: boolean
6   uninstalled: boolean
7   peertubeEngine: string
8   description: string
9   homepage: string
10   settings: { [ name: string ]: string }
11   createdAt: Date
12   updatedAt: Date
13 }