12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
/// <reference types="astro/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly PUBLIC_SITE_URL?: string;
|
|
readonly PUBLIC_UMAMI_SCRIPT_URL?: string;
|
|
readonly PUBLIC_UMAMI_WEBSITE_ID?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|