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