2022-04-12 13:24:14 +02:00
|
|
|
declare module '*.vue' {
|
|
|
|
import type { ComponentOptions, ComponentOptions } from 'vue';
|
|
|
|
const Component: ComponentOptions;
|
|
|
|
export default Component;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module '*.md' {
|
|
|
|
const Component: ComponentOptions;
|
|
|
|
export default Component;
|
|
|
|
}
|
2023-05-16 23:12:37 +02:00
|
|
|
|
|
|
|
declare module '~icons/*' {
|
|
|
|
import { FunctionalComponent, SVGAttributes } from 'vue';
|
|
|
|
const component: FunctionalComponent<SVGAttributes>;
|
|
|
|
export default component;
|
|
|
|
}
|
2023-06-23 21:33:54 +02:00
|
|
|
|
|
|
|
declare module 'iarna-toml-esm' {
|
|
|
|
export const parse: (toml: string) => any;
|
|
|
|
export const stringify: (obj: any) => string;
|
|
|
|
}
|