UNPKG

ag-grid-community

Version:

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

14 lines (13 loc) 433 B
import { RowNode } from "../entities/rowNode"; import { BeanStub } from "../context/beanStub"; export declare class ValueCache extends BeanStub { 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; }