aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-11-26 17:36:44 +0100
committerChocobozzz <me@florianbigard.com>2021-11-26 17:36:55 +0100
commit8afade2607e072221a8ff8c108bd1787a3501a2d (patch)
treecb4b3724cf38076cfd5850be727535a92e85fab3 /shared
parent7137377d097a74087ed062c8071c1aa5c717c7f7 (diff)
downloadPeerTube-8afade2607e072221a8ff8c108bd1787a3501a2d.tar.gz
PeerTube-8afade2607e072221a8ff8c108bd1787a3501a2d.tar.zst
PeerTube-8afade2607e072221a8ff8c108bd1787a3501a2d.zip
Introduce plugin id selectors
Diffstat (limited to 'shared')
-rw-r--r--shared/models/plugins/client/index.ts1
-rw-r--r--shared/models/plugins/client/plugin-selector-id.type.ts1
2 files changed, 2 insertions, 0 deletions
diff --git a/shared/models/plugins/client/index.ts b/shared/models/plugins/client/index.ts
index 6dfc6351f..c500185c9 100644
--- a/shared/models/plugins/client/index.ts
+++ b/shared/models/plugins/client/index.ts
@@ -1,6 +1,7 @@
1export * from './client-hook.model' 1export * from './client-hook.model'
2export * from './plugin-client-scope.type' 2export * from './plugin-client-scope.type'
3export * from './plugin-element-placeholder.type' 3export * from './plugin-element-placeholder.type'
4export * from './plugin-selector-id.type'
4export * from './register-client-form-field.model' 5export * from './register-client-form-field.model'
5export * from './register-client-hook.model' 6export * from './register-client-hook.model'
6export * from './register-client-settings-script.model' 7export * from './register-client-settings-script.model'
diff --git a/shared/models/plugins/client/plugin-selector-id.type.ts b/shared/models/plugins/client/plugin-selector-id.type.ts
new file mode 100644
index 000000000..b74dffbef
--- /dev/null
+++ b/shared/models/plugins/client/plugin-selector-id.type.ts
@@ -0,0 +1 @@
export type PluginSelectorId = 'login-form'