From a27e3dd7e9a01ea9ca472229bf8592b9b3fc8c84 Mon Sep 17 00:00:00 2001 From: João Augusto Costa Branco Marado Torres Date: Sun, 6 Jul 2025 13:04:24 -0300 Subject: feat: import.meta.env types MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Augusto Costa Branco Marado Torres --- src/env.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/env.d.ts 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; +} -- cgit v1.2.3