website/src/env.d.ts

10 lines
165 B
TypeScript
Raw Normal View History

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