env.d.ts 190 B

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