ag-grid
Version:
Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
18 lines (17 loc) • 594 B
TypeScript
// Type definitions for ag-grid v18.1.2
// Project: http://www.ag-grid.com/
// Definitions by: Niall Crosby <https://github.com/ag-grid/>
import { GridCell } from "./gridCell";
import { Column } from "./column";
export declare class GridRow {
floating: string;
rowIndex: number;
constructor(rowIndex: number, floating: string);
isFloatingTop(): boolean;
isFloatingBottom(): boolean;
isNotFloating(): boolean;
equals(otherSelection: GridRow): boolean;
toString(): string;
getGridCell(column: Column): GridCell;
before(otherSelection: GridRow): boolean;
}