env.d.ts 455 B

1234567891011121314151617181920212223
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly SIX_APP_NAME: string;
  4. readonly SIX_APP_TITLE: string;
  5. /**
  6. * 导诊接口地址
  7. */
  8. readonly SIX_API_HOSPITAL_GUIDE?: string;
  9. /**
  10. * 导诊 AI 接口地址
  11. */
  12. readonly SIX_API_GUIDE_CHAT?: string;
  13. /**
  14. * 智能 AI 接口地址
  15. */
  16. readonly SIX_API_AI_CHAT?: string;
  17. /**
  18. * 舌象图片前缀
  19. */
  20. readonly SIX_ANALYSIS_IMAGE_PREFIX?: string;
  21. }