summaryrefslogtreecommitdiff
path: root/src/env.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/env.d.ts')
-rw-r--r--src/env.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/env.d.ts b/src/env.d.ts
new file mode 100644
index 0000000..588193b
--- /dev/null
+++ b/src/env.d.ts
@@ -0,0 +1,7 @@
+import type { env } from "./lib/env.ts";
+
+type ImportMetaEnv = typeof env;
+
+interface ImportMeta {
+ readonly env: ImportMetaEnv;
+}