2024-11-17 17:17:40 +08:00
|
|
|
// File path: app/end.d.ts
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 配置
|
|
|
|
*/
|
|
|
|
|
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
interface ImportMetaEnv {
|
2024-11-28 23:10:00 +08:00
|
|
|
readonly VITE_INIT_STATUS: string;
|
|
|
|
readonly VITE_SERVER_API: string;
|
|
|
|
readonly VITE_PORT: string;
|
|
|
|
readonly VITE_ADDRESS: string;
|
2024-11-17 17:17:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
interface ImportMeta {
|
2024-11-22 13:13:04 +08:00
|
|
|
readonly env: ImportMetaEnv;
|
|
|
|
}
|