优化FormItemsRenderer类型

master
LiuJiaNan 2025-11-04 16:01:59 +08:00
parent d73ca14438
commit 8f0c9b9702
1 changed files with 2 additions and 2 deletions

View File

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