]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/peertube-plugin.model.ts
2a1dfb3a7b465cbc5c3c3015711484becdf74c0a
[github/Chocobozzz/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 settings: any
10 createdAt: Date
11 updatedAt: Date
12 }