env.d.ts 230 B

123456789101112
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly SIX_APP_NAME: string;
  4. readonly SIX_APP_TITLE: string;
  5. readonly SIX_REQUEST_BASE?: string;
  6. }
  7. interface ImportMeta {
  8. readonly env: ImportMetaEnv;
  9. }