Vben
authored
|
1
|
declare module '*.vue' {
|
Vben
authored
|
2
|
import { DefineComponent } from 'vue';
|
vben
authored
|
3
|
|
Vben
authored
|
4
|
const Component: DefineComponent<{}, {}, any>;
|
Vben
authored
|
5
6
7
|
export default Component;
}
|
vben
authored
|
8
9
|
declare module 'ant-design-vue/es/locale/*' {
import { Locale } from 'ant-design-vue/types/locale-provider';
|
vben
authored
|
10
|
|
vben
authored
|
11
12
13
14
|
const locale: Locale & ReadonlyRecordable;
export default locale as Locale & ReadonlyRecordable;
}
|
Vben
authored
|
15
16
17
18
|
declare module 'virtual:*' {
const result: any;
export default result;
}
|