mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-18 01:06:40 +08:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
declare module '*.vue' {
|
|
import { DefineComponent } from 'vue';
|
|
const Component: DefineComponent<{}, {}, any>;
|
|
export default Component;
|
|
}
|
|
|
|
declare module 'virtual:*' {
|
|
const result: any;
|
|
export default result;
|
|
}
|