1
0
Fork 0
peertube/shared/models/plugins/peertube-plugin.model.ts

17 lines
341 B
TypeScript
Raw Normal View History

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