2024-11-06 21:11:50 +01:00

14 lines
296 B
TypeScript

/// <reference types='vite/client' />
/// <reference types="vite-plugin-svgr/client" />
interface ImportMetaEnv {
VITE_CODEX_API_URL: string;
VITE_GEO_IP_URL: string;
VITE_DISCORD_LINK: string;
}
interface ImportMeta {
readonly PACKAGE_VERSION: string;
readonly env: ImportMetaEnv;
}