blob: fc76e210d4587341c68a1e01cc16b03c7f3850d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
declare module '*.vue' {
import type { ComponentOptions, ComponentOptions } from 'vue';
const Component: ComponentOptions;
export default Component;
}
declare module '*.md' {
const Component: ComponentOptions;
export default Component;
}
declare module '~icons/*' {
import { FunctionalComponent, SVGAttributes } from 'vue';
const component: FunctionalComponent<SVGAttributes>;
export default component;
}
|