vite-env.d.ts 340 B

1234567891011121314151617181920
  1. /// <reference types="vite/client" />
  2. declare module '*.vue' {
  3. import type { DefineComponent } from 'vue'
  4. const component: DefineComponent<{}, {}, any>
  5. export default component
  6. }
  7. interface LeaderLine {
  8. new(x: unknown, y: unknown)
  9. }
  10. interface Window {
  11. GLOBAL_CONFIG: {
  12. api: string;
  13. oss: string;
  14. },
  15. LeaderLine: any
  16. }