refactor: 通知公告 原生表单(非最终确定版)

This commit is contained in:
dap
2025-03-07 20:29:27 +08:00
parent e78f4e984d
commit a66e13eca6
2 changed files with 85 additions and 23 deletions

11
apps/web-antd/types/antd.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
import type { RuleObject } from 'ant-design-vue/es/form';
declare global {
type AntdFormRules<T> = {
[key: string]: RuleObject[];
} & {
[K in keyof T]?: RuleObject[];
};
}
export {};