aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/plugins/server/api/peertube-plugin.model.ts
blob: 0bc1b095ba71bc4265af4c95b122613c6834b7b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { PluginType_Type } from '../../plugin.type.js'

export interface PeerTubePlugin {
  name: string
  type: PluginType_Type
  latestVersion: string
  version: string
  enabled: boolean
  uninstalled: boolean
  peertubeEngine: string
  description: string
  homepage: string
  settings: { [ name: string ]: string }
  createdAt: Date
  updatedAt: Date
}