@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
9 lines (8 loc) • 418 B
TypeScript
import * as React from 'react';
import { CellDataChangedInfo } from '../../AdaptableState/Common/CellDataChangedInfo';
export interface DataChangeHistoryTableProps {
changeHistoryLog: Record<string, CellDataChangedInfo>;
onUndoChange: (changeKey: string) => void;
onClearRow: (changeKey: string) => void;
}
export declare const DataChangeHistoryTable: React.FunctionComponent<DataChangeHistoryTableProps>;