blob: 576fcce3df612725f72e41c600743a7965e28690 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/// <reference types="astro/client" />
/// <reference path="../.astro/types.d.ts" />
interface ImportMetaEnv {
readonly GITHUB_TOKEN: string | undefined;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
|