10 lines
329 B
TypeScript
Raw Normal View History

2024-04-07 17:35:03 +08:00
/// <reference types="vite/client" />
/// <reference types="element-plus/global" />
/// <reference types="./components.d.ts" />
2024-12-21 22:17:07 +08:00
type BooleanString = 'true' | 'false';
interface ImportMetaEnv {
2024-12-22 21:24:53 +08:00
readonly VITE_REQUEST_BASE_URL: string;
readonly VITE_WEBSOCKET_BASE_URL: string;
readonly VITE_GAME_2048_DEBUG: BooleanString;
2024-12-21 22:17:07 +08:00
}