UNPKG

ag-grid

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

16 lines (15 loc) 506 B
// Type definitions for ag-grid v18.1.2 // Project: http://www.ag-grid.com/ // Definitions by: Niall Crosby <https://github.com/ag-grid/> import { RowNode } from "../entities/rowNode"; export declare class ValueCache { private gridOptionsWrapper; private cacheVersion; private active; private neverExpires; init(): void; onDataChanged(): void; expire(): void; setValue(rowNode: RowNode, colId: string, value: any): any; getValue(rowNode: RowNode, colId: string): any; }