aboutsummaryrefslogtreecommitdiff
path: root/src/env.d.ts
blob: d71433184e55ad96febc4e9dffd5deec865fb416 (plain) (blame)
1
2
3
4
5
6
7
8
9
/// <reference path="../.astro/types.d.ts" />
interface ImportMetaEnv {
	readonly DEFAULT_TITLE: string;
	readonly DEFAULT_DESCRIPTION: string;
}

interface ImportMeta {
	readonly env: ImportMetaEnv;
}