aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/global.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/global.d.ts')
-rw-r--r--subprojects/frontend/src/global.d.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/subprojects/frontend/src/global.d.ts b/subprojects/frontend/src/global.d.ts
new file mode 100644
index 00000000..0533a46e
--- /dev/null
+++ b/subprojects/frontend/src/global.d.ts
@@ -0,0 +1,11 @@
1declare const DEBUG: boolean;
2
3declare const PACKAGE_NAME: string;
4
5declare const PACKAGE_VERSION: string;
6
7declare module '*.module.scss' {
8 const cssVariables: { [key in string]?: string };
9 // eslint-disable-next-line import/no-default-export
10 export default cssVariables;
11}