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

Hierarchy (view full)

Constructors

Properties

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