UNPKG

ag-grid-enterprise

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

7 lines (6 loc) 270 B
export interface VirtualListModel { getRowCount(): number; getRow(index: number): any; /** Required if using soft refresh. If rows are equal, componentUpdater will be called instead of remove/create */ areRowsEqual?(oldRow: any, newRow: any): boolean; }