aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/plugins')
-rw-r--r--shared/models/plugins/plugin-client-scope.type.ts2
-rw-r--r--shared/models/plugins/plugin-package-json.model.ts4
2 files changed, 4 insertions, 2 deletions
diff --git a/shared/models/plugins/plugin-client-scope.type.ts b/shared/models/plugins/plugin-client-scope.type.ts
index a2112eed7..0c616c5ed 100644
--- a/shared/models/plugins/plugin-client-scope.type.ts
+++ b/shared/models/plugins/plugin-client-scope.type.ts
@@ -1 +1 @@
export type PluginClientScope = 'common' | 'video-watch' export type PluginClientScope = 'common' | 'video-watch' | 'search'
diff --git a/shared/models/plugins/plugin-package-json.model.ts b/shared/models/plugins/plugin-package-json.model.ts
index f8029ec34..87a48e97f 100644
--- a/shared/models/plugins/plugin-package-json.model.ts
+++ b/shared/models/plugins/plugin-package-json.model.ts
@@ -1,6 +1,8 @@
1import { PluginClientScope } from './plugin-client-scope.type'
2
1export type ClientScript = { 3export type ClientScript = {
2 script: string, 4 script: string,
3 scopes: string[] 5 scopes: PluginClientScope[]
4} 6}
5 7
6export type PluginPackageJson = { 8export type PluginPackageJson = {