mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2026-04-29 18:34:09 +08:00
12 lines
309 B
TypeScript
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;
|
|
}
|