UNPKG

510 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 { GridPanel } from "../gridPanel/gridPanel";
5import { RowNode } from "../entities/rowNode";
6export declare class AutoHeightCalculator {
7 private beans;
8 private $scope;
9 private columnController;
10 private gridPanel;
11 private eDummyContainer;
12 registerGridComp(gridPanel: GridPanel): void;
13 getPreferredHeightForRow(rowNode: RowNode): number;
14}