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

Hierarchy (view full)

Constructors

Properties

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