website/src/env.d.ts

11 lines
211 B
TypeScript
Raw Normal View History

2024-03-07 11:21:37 +01:00
/// <reference path="../.astro/types.d.ts" />
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;
}