blob: 54c383f57bd52a4f68c0affa3caf750a6cb3e650 (
plain) (
tree)
|
|
import { PluginType } from '../../plugin.type'
export interface PeerTubePlugin {
name: string
type: PluginType
latestVersion: string
version: string
enabled: boolean
uninstalled: boolean
peertubeEngine: string
description: string
homepage: string
settings: { [ name: string ]: string }
createdAt: Date
updatedAt: Date
}
|