vue-vben-admin/types/module.d.ts

23 lines
612 B
TypeScript
Raw Normal View History

2021-03-26 22:22:58 +08:00
declare module '*.vue' {
import { DefineComponent } from 'vue';
const Component: DefineComponent<{}, {}, any>;
2021-03-26 22:22:58 +08:00
export default Component;
}
2021-01-07 21:25:15 +08:00
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;
}
declare module 'moment/dist/locale/*' {
2021-01-07 21:25:15 +08:00
import { LocaleSpecification } from 'moment';
const locale: LocaleSpecification & ReadonlyRecordable;
export default locale;
}
2021-04-16 23:54:53 +08:00
declare module 'virtual:*' {
const result: any;
export default result;
}