echoes/frontend/app/env.d.ts
lsy 3daf6280a7 数据库:由后端动态构建
后端:更新数据库配置,支持MySQL和SQLite,重构SQL查询构建,重构数据库初始化操作;
前端:调整初始化状态逻辑,改进主题切换功能。
2024-11-28 23:10:00 +08:00

19 lines
307 B
TypeScript

// File path: app/end.d.ts
/**
* 配置
*/
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_INIT_STATUS: string;
readonly VITE_SERVER_API: string;
readonly VITE_PORT: string;
readonly VITE_ADDRESS: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}