summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-06 13:04:24 -0300
committerJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-06 13:04:24 -0300
commita27e3dd7e9a01ea9ca472229bf8592b9b3fc8c84 (patch)
treef986b8896227c5d7661a5181d03b278f86ebb3ce
parente43b58379323144cb4067ec1329a2ccfaaa5cc5e (diff)
feat: import.meta.env types
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
-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;
+}