core/env.d.ts

12 lines
194 B
TypeScript
Raw Normal View History

2025-05-16 06:23:48 +00:00
/// <reference types="vite/client" />
2025-07-02 19:30:21 +00:00
declare const __APP_VERSION__: string
2025-05-16 06:23:48 +00:00
interface ImportMetaEnv {
2025-07-02 19:30:21 +00:00
readonly VITE_API_URL: string;
2025-05-16 06:23:48 +00:00
}
2025-05-16 06:23:48 +00:00
interface ImportMeta {
2025-07-02 19:30:21 +00:00
readonly env: ImportMetaEnv;
}