2025-11-11 09:48:36 +07:00

14 lines
333 B
TypeScript

/// <reference types="vite/client" />
declare const MAIN_WINDOW_VITE_DEV_SERVER_URL: string | undefined;
declare const MAIN_WINDOW_VITE_NAME: string | undefined;
interface ImportMetaEnv {
readonly VITE_APP_API: string
readonly VITE_NODE_NETWORK?: 'mainnet' | 'testnet'
}
interface ImportMeta {
readonly env: ImportMetaEnv
}