Interface IProps

    Props

    interface IProps {
        add: ((defaultValue?: any, insertIndex?: number) => void);
        children: ReactNode;
        errors: ReactNode[];
        label: string;
    }

    Properties

    add: ((defaultValue?: any, insertIndex?: number) => void)
    children: ReactNode
    errors: ReactNode[]
    label: string

    Generated using TypeDoc and TypeDoc Airthium Plugin