mirror of https://github.com/Chocobozzz/PeerTube
17 lines
345 B
TypeScript
17 lines
345 B
TypeScript
![]() |
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
|
||
|
}
|