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

Hierarchy (view full)

Constructors

Properties

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