@orca-fe/antd-plus
Version:
Transformer Container
15 lines (14 loc) • 605 B
TypeScript
import type { ReactElement } from 'react';
import type { NamePath } from 'antd/lib/form/interface';
export interface FormItemMappingValueProps {
/** 外部(表单)与内部(组件)字段的映射关系 */
valueMapping: Record<string, NamePath>;
/** 属性名 默认为 `value` */
valuePropName?: string;
/** 触发器名 默认为 `onChange` */
trigger?: string;
/** 子组件 */
children?: ReactElement;
}
export declare function FormItemMappingValue(props: FormItemMappingValueProps): import("react/jsx-runtime").JSX.Element;
export default FormItemMappingValue;