songshankun
2023-11-14 c8cf9f8ba577ce75e8723ff2d4218fffae349c47
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
}