Interface IProps

    Props

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

    Properties

    add: ((defaultValue?, insertIndex?) => void)

    Type declaration

      • (defaultValue?, insertIndex?): void
      • Parameters

        • Optional defaultValue: any
        • Optional insertIndex: number

        Returns void

    children: ReactNode
    errors: ReactNode[]
    label: string

    Generated using TypeDoc and TypeDoc Airthium Plugin