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

17 lines
314 B
TypeScript
Raw Normal View History

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[]
clientScripts: { script: string, scopes: string[] }[]
}