interface Store {
    border: number;
    bounds: Bounds;
    colWidth: number;
    cols: Cols;
    footer: boolean;
    header: boolean;
    height: number;
    pagination: Pagination;
    rawRows: Rows;
    rowHeight: number;
    rows: Rows;
    scrollBarWidth: number;
    scrollLeft: number;
    scrollTop: number;
    width: number;
    getColWidth(cols): number;
}

Properties

border: number
bounds: Bounds
colWidth: number
cols: Cols
footer: boolean
header: boolean
height: number
pagination: Pagination
rawRows: Rows
rowHeight: number
rows: Rows
scrollBarWidth: number
scrollLeft: number
scrollTop: number
width: number

Methods