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; +}