react-admin-component
Version:
react library
16 lines (15 loc) • 499 B
TypeScript
/// <reference types="react" />
import { FormBaseProps } from '../form-input';
import { FormProps } from 'antd/lib/form';
interface IFieldKey {
key: string;
width: string;
label: string;
placeholder: string;
}
interface FormInputMultipleProps extends FormBaseProps, Omit<FormProps, 'onChange'> {
onChange?: () => void;
fieldKeys: IFieldKey[];
}
declare const FormInputMultiple: (props: FormInputMultipleProps) => JSX.Element;
export default FormInputMultiple;