| 1234567891011121314151617181920212223 |
- /// <reference types="vite/client" />
- interface ImportMetaEnv {
- readonly SIX_APP_NAME: string;
- readonly SIX_APP_TITLE: string;
- /**
- * 导诊接口地址
- */
- readonly SIX_API_HOSPITAL_GUIDE?: string;
- /**
- * 导诊 AI 接口地址
- */
- readonly SIX_API_GUIDE_CHAT?: string;
- /**
- * 智能 AI 接口地址
- */
- readonly SIX_API_AI_CHAT?: string;
- /**
- * 舌象图片前缀
- */
- readonly SIX_ANALYSIS_IMAGE_PREFIX?: string;
- }
|