UNPKG

ag-grid-community

Version:

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

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