UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

14 lines (13 loc) 419 B
import * as React from 'react'; import type { ValidateStatus } from './FormItem'; export interface ErrorListProps { fieldId?: string; help?: React.ReactNode; helpStatus?: ValidateStatus; errors?: React.ReactNode[]; warnings?: React.ReactNode[]; className?: string; onVisibleChanged?: (visible: boolean) => void; } declare const ErrorList: React.FC<ErrorListProps>; export default ErrorList;