Files
2026-01-16 01:51:36 +00:00

12 lines
347 B
TypeScript

import type { FormInstance } from 'antd';
/**
* 因为 fieldProps 支持了 function 所以新增了这个方法
*
* @param fieldProps
* @param form
*/
export declare const getFieldPropsOrFormItemProps: (fieldProps: any, form?: FormInstance<any> | null, extraProps?: any) => Record<string, any> & {
onChange: any;
colSize: number;
};