UNPKG

596 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 { Column } from "./column";
5import { GridRow } from "./gridRow";
6export interface GridCellDef {
7 floating: string;
8 rowIndex: number;
9 column: Column;
10}
11export declare class GridCell {
12 floating: string;
13 rowIndex: number;
14 column: Column;
15 constructor(gridCellDef: GridCellDef);
16 getGridCellDef(): GridCellDef;
17 getGridRow(): GridRow;
18 toString(): string;
19 createId(): string;
20 equals(other: GridCell): boolean;
21}