env.d.ts 387 B

123456789101112
  1. /// <reference types="vite/client" />
  2. /// <reference types="vite-svg-loader" />
  3. declare module '*.vue' {
  4. import { DefineComponent } from 'vue';
  5. // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
  6. const component: DefineComponent<{}, {}, any>;
  7. export default component;
  8. }
  9. interface ImportMetaEnv {
  10. readonly VITE_API_BASE_URL: string;
  11. }