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

22 lines
359 B
TypeScript
Raw Normal View History

2019-07-08 12:02:03 +00:00
export type ClientScript = {
script: string,
scopes: string[]
}
export type PluginPackageJson = {
name: string
2019-07-05 13:28:49 +00:00
version: string
description: string
engine: { peertube: string },
homepage: string,
author: string,
bugs: string,
library: string,
staticDirs: { [ name: string ]: string }
css: string[]
2019-07-08 12:02:03 +00:00
clientScripts: ClientScript[]
}