Files
blog/src/env.d.ts
2023-03-02 16:04:37 +01:00

13 lines
265 B
TypeScript

/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
interface ImportMetaEnv {
readonly REDIS_URI: string;
readonly SITE_URI: string;
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}