diff options
author | Chocobozzz <me@florianbigard.com> | 2021-12-28 15:30:36 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-12-28 15:34:55 +0100 |
commit | fba87e27c1cb6c679fff0d2c50be230f7e0c3e56 (patch) | |
tree | d7fe489c57056a8c1cba3d199a90053ff547f4ad /shared/models/plugins | |
parent | 81d02aac56d76227c094d40b17b29875d88417f4 (diff) | |
download | PeerTube-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.ts | 2 |
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 @@ | |||
1 | export enum PluginType { | 1 | export const enum PluginType { |
2 | PLUGIN = 1, | 2 | PLUGIN = 1, |
3 | THEME = 2 | 3 | THEME = 2 |
4 | } | 4 | } |