ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
14 lines (13 loc) • 321 B
TypeScript
import type { RowPinnedType } from '../interfaces/iRowNode';
export interface CellValueChange {
rowPinned: RowPinnedType;
rowIndex: number;
columnId: string;
oldValue: any;
newValue: any;
}
export interface LastFocusedCell {
rowPinned: RowPinnedType;
rowIndex: number;
columnId: string;
}