10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
/// <reference types="astro/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VERCEL_DEPLOY_HOOK: string;
|
|
readonly ADMIN_GITHUB_ID: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|