diff options
Diffstat (limited to 'shared/models/plugins/server/plugin-constant-manager.model.ts')
-rw-r--r-- | shared/models/plugins/server/plugin-constant-manager.model.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/shared/models/plugins/server/plugin-constant-manager.model.ts b/shared/models/plugins/server/plugin-constant-manager.model.ts deleted file mode 100644 index 4de3ce38f..000000000 --- a/shared/models/plugins/server/plugin-constant-manager.model.ts +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | export interface ConstantManager <K extends string | number> { | ||
2 | addConstant: (key: K, label: string) => boolean | ||
3 | deleteConstant: (key: K) => boolean | ||
4 | getConstantValue: (key: K) => string | ||
5 | getConstants: () => Record<K, string> | ||
6 | resetConstants: () => void | ||
7 | } | ||