diff options
author | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-06 13:04:24 -0300 |
---|---|---|
committer | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-06 13:04:24 -0300 |
commit | a27e3dd7e9a01ea9ca472229bf8592b9b3fc8c84 (patch) | |
tree | f986b8896227c5d7661a5181d03b278f86ebb3ce | |
parent | e43b58379323144cb4067ec1329a2ccfaaa5cc5e (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.ts | 7 |
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; +} |