env.d.ts 480 B

1234567891011121314151617181920
  1. /// <reference types="vite/client" />
  2. declare module '*.vue' {
  3. import { DefineComponent } from 'vue'
  4. // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
  5. const component: DefineComponent<{}, {}, any>
  6. export default component
  7. }
  8. interface ImportMetaEnv {
  9. VITE_ORIGIN: string
  10. VITE_API_BASE: string
  11. }
  12. declare module 'nprogress'
  13. declare const FB: any
  14. declare const google: any
  15. declare const Beacon: any
  16. declare const Swiper: any