aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-12-28 15:30:36 +0100
committerChocobozzz <me@florianbigard.com>2021-12-28 15:34:55 +0100
commitfba87e27c1cb6c679fff0d2c50be230f7e0c3e56 (patch)
treed7fe489c57056a8c1cba3d199a90053ff547f4ad /shared/models/plugins
parent81d02aac56d76227c094d40b17b29875d88417f4 (diff)
downloadPeerTube-fba87e27c1cb6c679fff0d2c50be230f7e0c3e56.tar.gz
PeerTube-fba87e27c1cb6c679fff0d2c50be230f7e0c3e56.tar.zst
PeerTube-fba87e27c1cb6c679fff0d2c50be230f7e0c3e56.zip
Resolve enums at compile time
Diffstat (limited to 'shared/models/plugins')
-rw-r--r--shared/models/plugins/plugin.type.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/models/plugins/plugin.type.ts b/shared/models/plugins/plugin.type.ts
index b6766821a..016219ceb 100644
--- a/shared/models/plugins/plugin.type.ts
+++ b/shared/models/plugins/plugin.type.ts
@@ -1,4 +1,4 @@
1export enum PluginType { 1export const enum PluginType {
2 PLUGIN = 1, 2 PLUGIN = 1,
3 THEME = 2 3 THEME = 2
4} 4}