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/>
|
4 | import { Column } from "./column";
|
5 | import { GridRow } from "./gridRow";
|
6 | export interface GridCellDef {
|
7 | floating: string;
|
8 | rowIndex: number;
|
9 | column: Column;
|
10 | }
|
11 | export 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 | }
|