style 代码格式化

This commit is contained in:
DaxPay
2024-07-02 09:31:05 +08:00
parent 0f3d83e58a
commit aafdd6540e
708 changed files with 16137 additions and 18495 deletions

16
types/module.d.ts vendored
View File

@@ -1,18 +1,18 @@
declare module '*.vue' {
import { DefineComponent } from 'vue';
import { DefineComponent } from 'vue'
const Component: DefineComponent<{}, {}, any>;
export default Component;
const Component: DefineComponent<{}, {}, any>
export default Component
}
declare module 'ant-design-vue/es/locale/*' {
import { Locale } from 'ant-design-vue/types/locale-provider';
import { Locale } from 'ant-design-vue/types/locale-provider'
const locale: Locale & ReadonlyRecordable;
export default locale as Locale & ReadonlyRecordable;
const locale: Locale & ReadonlyRecordable
export default locale as Locale & ReadonlyRecordable
}
declare module 'virtual:*' {
const result: any;
export default result;
const result: any
export default result
}