env.d.ts 190 B

12345678910
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly VITE_APP_UPDATE_TIME: string
  4. // 更多环境变量...
  5. }
  6. interface ImportMeta {
  7. readonly env: ImportMetaEnv
  8. }