unplugin-icons.d.ts 252 B

12345678910
  1. /**
  2. * unplugin-icons 类型声明
  3. * 为 ~icons 路径提供类型支持
  4. */
  5. declare module '~icons/*' {
  6. import { FunctionalComponent, SVGAttributes } from 'vue';
  7. const component: FunctionalComponent<SVGAttributes>;
  8. export default component;
  9. }