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-06-01 23:56:11 +00:00
|
|
|
|
2025-05-16 06:23:48 +00:00
|
|
|
interface ImportMeta {
|
2025-07-02 19:30:21 +00:00
|
|
|
readonly env: ImportMetaEnv;
|
2025-06-01 23:56:11 +00:00
|
|
|
}
|