env.d.ts 296 B

1234567891011121314
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly SIX_TITLE?: string;
  4. readonly SIX_API?: string;
  5. }
  6. interface ImportMeta {
  7. readonly env: ImportMetaEnv;
  8. }
  9. declare const __app_base__: string;
  10. declare const __app_name__: string;
  11. declare const __app_version__: string;