From 3865b4b089fd4a2a91352f739a0b2e7dbc035532 Mon Sep 17 00:00:00 2001 From: Quinn Hegeman <102350242+itsfinniii@users.noreply.github.com> Date: Sat, 7 Mar 2026 16:57:45 +0100 Subject: [PATCH] Add Astro environment types --- astro/src/env.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 astro/src/env.d.ts diff --git a/astro/src/env.d.ts b/astro/src/env.d.ts new file mode 100644 index 0000000..ce4feaa --- /dev/null +++ b/astro/src/env.d.ts @@ -0,0 +1,8 @@ +interface ImportMetaEnv { + readonly DIRECTUS_TOKEN: string; + readonly DIRECTUS_URL: string; +} + +interface ImportMeta { + readonly env: ImportMetaEnv; +}