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.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/env.d.ts b/src/env.d.ts
index e16c13c..d714331 100644
--- a/src/env.d.ts
+++ b/src/env.d.ts
@@ -1 +1,9 @@
/// <reference path="../.astro/types.d.ts" />
+interface ImportMetaEnv {
+ readonly DEFAULT_TITLE: string;
+ readonly DEFAULT_DESCRIPTION: string;
+}
+
+interface ImportMeta {
+ readonly env: ImportMetaEnv;
+}