interface DropDownItemComponentType {
    new DropDownItemComponentTypenew (props: DropDownItemProps, context?: any): Component<DropDownItemProps, any, any>;
    childContextTypes?: ValidationMap<any>;
    contextType?: Context<any>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<DropDownItemProps>;
    displayName?: string;
    getDerivedStateFromError?: GetDerivedStateFromError<DropDownItemProps, any>;
    getDerivedStateFromProps?: GetDerivedStateFromProps<DropDownItemProps, any>;
    propTypes?: WeakValidationMap<DropDownItemProps>;
}

Hierarchy (view full)

Constructors

Properties

childContextTypes?: ValidationMap<any>
contextType?: Context<any>
contextTypes?: ValidationMap<any>
defaultProps?: Partial<DropDownItemProps>
displayName?: string
getDerivedStateFromError?: GetDerivedStateFromError<DropDownItemProps, any>
getDerivedStateFromProps?: GetDerivedStateFromProps<DropDownItemProps, any>