mirror of
https://github.com/jekip/naive-ui-admin.git
synced 2026-02-04 13:42:27 +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;
|
|
}
|