2025-10-21 01:14:13 +07:00
|
|
|
/// <reference types="vite/client" />
|
2025-10-29 19:55:44 +07:00
|
|
|
|
|
|
|
|
declare const MAIN_WINDOW_VITE_DEV_SERVER_URL: string | undefined;
|
|
|
|
|
declare const MAIN_WINDOW_VITE_NAME: string | undefined;
|
2025-11-10 10:38:44 +07:00
|
|
|
|
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
|
readonly VITE_APP_API: string
|
|
|
|
|
readonly VITE_NODE_NETWORK?: 'mainnet' | 'testnet'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
|
}
|