aboutsummaryrefslogtreecommitdiff
path: root/src/env.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/env.d.ts')
-rw-r--r--src/env.d.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/env.d.ts b/src/env.d.ts
new file mode 100644
index 0000000..d714331
--- /dev/null
+++ b/src/env.d.ts
@@ -0,0 +1,9 @@
+/// <reference path="../.astro/types.d.ts" />
+interface ImportMetaEnv {
+ readonly DEFAULT_TITLE: string;
+ readonly DEFAULT_DESCRIPTION: string;
+}
+
+interface ImportMeta {
+ readonly env: ImportMetaEnv;
+}