interface CardPanelComponentType {
    new CardPanelComponentTypenew (props: CardPanelProps, context?: any): Component<CardPanelProps, any, any>;
    childContextTypes?: ValidationMap<any>;
    contextType?: Context<any>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<CardPanelProps>;
    displayName?: string;
    getDerivedStateFromError?: GetDerivedStateFromError<CardPanelProps, any>;
    getDerivedStateFromProps?: GetDerivedStateFromProps<CardPanelProps, any>;
    Grid: CardPanelGridComponentType;
    Group: CardPanelGroupComponentType;
    propTypes?: WeakValidationMap<CardPanelProps>;
}

Hierarchy (view full)

Constructors

Properties

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