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