website/src/env.d.ts

9 lines
170 B
TypeScript
Raw Normal View History

2022-12-04 14:46:22 +01:00
/// <reference types="astro/client" />
interface ImportMetaEnv {
readonly GITHUB_ACCESS_TOKEN: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}