summaryrefslogtreecommitdiff
path: root/examples/env-vars/src/env.d.ts
blob: 35cb370765e8f9870c6a6d5e6051f3391e5e0294 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/// <reference types="astro/client" />

interface ImportMetaEnv {
	readonly DB_PASSWORD: string;
	readonly PUBLIC_SOME_KEY: string;
}

interface ImportMeta {
	readonly env: ImportMetaEnv;
}