Files
ThriveX-Admin/src/types/env.d.ts
2024-09-26 21:15:00 +08:00

14 lines
415 B
TypeScript

interface ImportMetaEnv {
readonly VITE_BAIDU_TONGJI_KEY: string;
readonly VITE_BAIDU_TONGJI_SECRET_KEY: string;
readonly VITE_BAIDU_TONGJI_SITE_ID: string;
readonly VITE_BAIDU_TONGJI_ACCESS_TOKEN: string;
readonly VITE_BAIDU_TONGJI_REFRESH_TOKEN: string;
readonly VITE_AI_APIPassword: string;
readonly VITE_AI_MODEL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}