mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2025-05-19 10:27:56 +00:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
interface ImportMetaEnv {
|
|
readonly VITE_CONFIG_PATH: string;
|
|
readonly VITE_CONFIG_FILE_NAME: string;
|
|
readonly VITE_LOG_PATH: string;
|
|
readonly VITE_CACHE_PATH: string;
|
|
readonly VITE_AUTO_START_SERVICE_NAME: string;
|
|
readonly VITE_GAME_LIST_PATH: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|