/// // Use this file to type your environment variables! // See https://docs.astro.build/en/guides/environment-variables/#intellisense-for-typescript for more information interface ImportMetaEnv { readonly DB_PASSWORD: string; readonly PUBLIC_SOME_KEY: string; } interface ImportMeta { readonly env: ImportMetaEnv; }