@ant-design/pro-utils
Version:
9 lines (8 loc) • 340 B
TypeScript
import type { FormItemProps, PopoverProps } from 'antd';
interface InlineErrorFormItemProps extends FormItemProps {
errorType?: 'popover' | 'default';
popoverProps?: PopoverProps;
children: any;
}
export declare const InlineErrorFormItem: (props: InlineErrorFormItemProps) => import("react/jsx-runtime").JSX.Element;
export {};