优化FormItemsRenderer类型

master
LiuJiaNan 2025-11-04 16:04:05 +08:00
parent eeb62f0355
commit e46a317041
1 changed files with 2 additions and 2 deletions

View File

@ -11,9 +11,9 @@ export interface CustomRenderProps {
/** 表单当前值 */ /** 表单当前值 */
formValues: FormValues; formValues: FormValues;
/** 字段值 */ /** 字段值 */
value: any; value?: any;
/** 值变化回调 */ /** 值变化回调 */
onChange: (value: any) => void; onChange?: (value: any) => void;
/** 其他属性 */ /** 其他属性 */
[key: string]: any; [key: string]: any;
} }