2024-09-26 19:44:35 +02:00

11 lines
190 B
TypeScript

/// <reference types='vite/client' />
interface ImportMetaEnv {
VITE_CODEX_API_URL: string;
}
interface ImportMeta {
readonly PACKAGE_VERSION: string;
readonly env: ImportMetaEnv;
}