aboutsummaryrefslogtreecommitdiff
path: root/examples/docs/src/env.d.ts
blob: 8e48612f595f7ba0cbf1350c287f61f8c5b57b45 (plain) (blame)
1
2
3
4
5
6
7
8
9
/// <reference types="astro/client" />

interface ImportMetaEnv {
	readonly GITHUB_TOKEN: string | undefined;
}

interface ImportMeta {
	readonly env: ImportMetaEnv;
}