chore: types

This commit is contained in:
Vben
2021-03-26 22:22:58 +08:00
parent 5b4a41ced4
commit a98835e18b
15 changed files with 122 additions and 255 deletions

6
types/module.d.ts vendored
View File

@@ -1,3 +1,9 @@
declare module '*.vue' {
import { defineComponent } from 'vue';
const Component: ReturnType<typeof defineComponent>;
export default Component;
}
declare module 'ant-design-vue/es/locale/*' {
import { Locale } from 'ant-design-vue/types/locale-provider';
const locale: Locale & ReadonlyRecordable;