UNPKG

506 BTypeScriptView Raw
1// Type definitions for ag-grid v18.1.2
2// Project: http://www.ag-grid.com/
3// Definitions by: Niall Crosby <https://github.com/ag-grid/>
4import { RowNode } from "../entities/rowNode";
5export declare class ValueCache {
6 private gridOptionsWrapper;
7 private cacheVersion;
8 private active;
9 private neverExpires;
10 init(): void;
11 onDataChanged(): void;
12 expire(): void;
13 setValue(rowNode: RowNode, colId: string, value: any): any;
14 getValue(rowNode: RowNode, colId: string): any;
15}