astro/examples/docs/src/env.d.ts

11 lines
214 B
TypeScript
Raw Normal View History

/// <reference types="astro/client" />
/// <reference path="../.astro/types.d.ts" />
2023-01-17 15:12:26 +00:00
interface ImportMetaEnv {
readonly GITHUB_TOKEN: string | undefined;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}