UNPKG

594 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 { GridCell } from "./gridCell";
5import { Column } from "./column";
6export declare class GridRow {
7 floating: string;
8 rowIndex: number;
9 constructor(rowIndex: number, floating: string);
10 isFloatingTop(): boolean;
11 isFloatingBottom(): boolean;
12 isNotFloating(): boolean;
13 equals(otherSelection: GridRow): boolean;
14 toString(): string;
15 getGridCell(column: Column): GridCell;
16 before(otherSelection: GridRow): boolean;
17}