UNPKG

tntd

Version:

tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。

13 lines 545 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; } export default function ErrorList({ help, helpStatus, errors, warnings, className: rootClassName, fieldId, onVisibleChanged, }: ErrorListProps): React.JSX.Element; //# sourceMappingURL=ErrorList.d.ts.map