songshankun
2023-11-13 456d6ed3fb5412575cb7541d3a0a601466d97038
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
}