interface DropDownComponentType {
    new DropDownComponentTypenew (props: DropDownProps, context?: any): Component<DropDownProps, any, any>;
    childContextTypes?: ValidationMap<any>;
    contextType?: Context<any>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<DropDownProps>;
    displayName?: string;
    getDerivedStateFromError?: GetDerivedStateFromError<DropDownProps, any>;
    getDerivedStateFromProps?: GetDerivedStateFromProps<DropDownProps, any>;
    Header: DropDownHeaderComponentType;
    Item: DropDownItemComponentType;
    propTypes?: WeakValidationMap<DropDownProps>;
    Splitter: DropDownSplitterComponentType;
}

Hierarchy (view full)

Constructors

Properties

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