perf: 修复部分 eslint 错误

This commit is contained in:
vben
2023-04-05 22:47:14 +08:00
parent 279977b817
commit 8e5a6b7ce5
42 changed files with 535 additions and 56 deletions

2
types/module.d.ts vendored
View File

@@ -1,11 +1,13 @@
declare module '*.vue' {
import { DefineComponent } from 'vue';
const Component: DefineComponent<{}, {}, any>;
export default Component;
}
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;
}