Files
ThriveX-Admin/src/types/env.d.ts
2024-12-16 20:18:23 +08:00

17 lines
384 B
TypeScript

interface ImportMetaEnv {
readonly VITE_VERSION: string;
readonly VITE_PROJECT_API: string;
readonly VITE_BAIDU_TONGJI_SITE_ID: string;
readonly VITE_BAIDU_TONGJI_ACCESS_TOKEN: string;
readonly VITE_AI_APIPassword: string;
readonly VITE_AI_MODEL: string;
readonly VITE_GAODE_WEB_API: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}