ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
9 lines (8 loc) • 347 B
TypeScript
import type { RowPinnedType } from './iRowNode';
export interface RowPosition {
/** A positive number from 0 to n, where n is the last row the grid is rendering
* or -1 if you want to navigate to the grid header */
rowIndex: number;
/** Either 'top', 'bottom' or null/undefined (for not pinned) */
rowPinned: RowPinnedType;
}