12 lines
253 B
TypeScript
12 lines
253 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;
|
|
}
|