interface TableComponentType {
    new TableComponentTypenew <T, C>(props: TableProps<any, void>, context?: any): Component<TableProps<T, C>, any, any>;
    childContextTypes?: ValidationMap<any>;
    contextType?: Context<any>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<TableProps<any, void>>;
    displayName?: string;
    FooterPanel: TableFooterPanelComponentType;
    InfiniteFooterPanel: TableInfiniteFooterPanelComponentType;
    InitTable: ContentPlaceholderComponentType;
    PageSize: TablePageSizeComponentType;
    Pagination: TablePaginationComponentType;
    propTypes?: WeakValidationMap<TableProps<any, void>>;
}

Constructors

Properties

childContextTypes?: ValidationMap<any>
contextType?: Context<any>
contextTypes?: ValidationMap<any>
defaultProps?: Partial<TableProps<any, void>>
displayName?: string
propTypes?: WeakValidationMap<TableProps<any, void>>