You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
598 B
19 lines
598 B
import * as React from 'react';
|
|
import { ColProps } from '../grid/col';
|
|
import { ValidateStatus } from './FormItem';
|
|
interface FormItemInputMiscProps {
|
|
prefixCls: string;
|
|
children: React.ReactNode;
|
|
errors: React.ReactNode[];
|
|
hasFeedback?: boolean;
|
|
validateStatus?: ValidateStatus;
|
|
onDomErrorVisibleChange: (visible: boolean) => void;
|
|
}
|
|
export interface FormItemInputProps {
|
|
wrapperCol?: ColProps;
|
|
help?: React.ReactNode;
|
|
extra?: React.ReactNode;
|
|
}
|
|
declare const FormItemInput: React.FC<FormItemInputProps & FormItemInputMiscProps>;
|
|
export default FormItemInput;
|