export interface CellUpdate { rowId: string | number; columnDef: string; newValue: any; rowIdentifier?: string; } export interface GridUpdate { updates: CellUpdate[]; timestamp?: number; }