vue-h5-template/types/module.d.ts

12 lines
309 B
TypeScript

declare module '*.vue' {
import type { DefineComponent } from 'vue';
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
const Component: DefineComponent<{}, {}, any>;
export default Component;
}
declare module 'virtual:*' {
const result: any;
export default result;
}