yangfeng
2024-03-30 6e377db3568788eab9bfbe2d7d7598f0ca7bca9b
1
2
3
4
5
6
7
8
9
10
11
12
13
/// <reference types="vite/client" />
/// <reference types="unplugin-icons/types/vue" />
declare module '~icons/*' {
  import { FunctionalComponent, SVGAttributes } from 'vue'
  const component: FunctionalComponent<SVGAttributes>
  export default component
}
declare module '*.vue' {
  import type { DefineComponent } from 'vue'
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
  const component: DefineComponent<object, object, any>
  export default component
}