mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-09 15:45:01 -04:00
21 lines
No EOL
552 B
TypeScript
21 lines
No EOL
552 B
TypeScript
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;
|
|
}
|
|
|
|
declare module 'iarna-toml-esm' {
|
|
export const parse: (toml: string) => any;
|
|
export const stringify: (obj: any) => string;
|
|
} |