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