2019-07-15 03:22:57 -04:00
|
|
|
import { PluginType } from './plugin.type'
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
export interface PeerTubePlugin {
|
|
|
|
name: string
|
2019-07-15 03:22:57 -04:00
|
|
|
type: PluginType
|
2019-07-12 05:39:58 -04:00
|
|
|
latestVersion: string
|
2019-07-10 10:59:53 -04:00
|
|
|
version: string
|
|
|
|
enabled: boolean
|
|
|
|
uninstalled: boolean
|
|
|
|
peertubeEngine: string
|
|
|
|
description: string
|
2019-07-11 08:40:19 -04:00
|
|
|
homepage: string
|
|
|
|
settings: { [ name: string ]: string }
|
2019-07-10 10:59:53 -04:00
|
|
|
createdAt: Date
|
|
|
|
updatedAt: Date
|
|
|
|
}
|