thefoldwithin-earth/src/env.d.ts

13 lines
253 B
TypeScript
Raw Normal View History

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