UNPKG

ag-grid

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

22 lines (21 loc) 596 B
// Type definitions for ag-grid v18.1.2 // Project: http://www.ag-grid.com/ // Definitions by: Niall Crosby <https://github.com/ag-grid/> import { Column } from "./column"; import { GridRow } from "./gridRow"; export interface GridCellDef { floating: string; rowIndex: number; column: Column; } export declare class GridCell { floating: string; rowIndex: number; column: Column; constructor(gridCellDef: GridCellDef); getGridCellDef(): GridCellDef; getGridRow(): GridRow; toString(): string; createId(): string; equals(other: GridCell): boolean; }