aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/types/ImportMeta.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/types/ImportMeta.d.ts')
-rw-r--r--subprojects/frontend/types/ImportMeta.d.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/subprojects/frontend/types/ImportMeta.d.ts b/subprojects/frontend/types/ImportMeta.d.ts
new file mode 100644
index 00000000..2008e268
--- /dev/null
+++ b/subprojects/frontend/types/ImportMeta.d.ts
@@ -0,0 +1,9 @@
1interface ImportMeta {
2 env: {
3 DEV: boolean;
4 MODE: string;
5 PROD: boolean;
6 VITE_PACKAGE_NAME: string;
7 VITE_PACKAGE_VERSION: string;
8 };
9}