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

// Use this file to type your environment variables!
// See https://docs.astro.build/en/guides/environment-variables/#intellisense-for-typescript for more information

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

interface ImportMeta {
	readonly env: ImportMetaEnv;
}