active-table
Version:
Framework agnostic table component for editable data experience
10 lines • 520 B
TypeScript
import { CELL_UPDATE_TYPE } from '../../enums/onUpdateCellType';
import { CellText } from '../../types/tableData';
import { ActiveTable } from '../../activeTable';
export declare class FireEvents {
static onCellUpdate(at: ActiveTable, cellText: CellText, rowIndex: number, columnIndex: number, updateType: CELL_UPDATE_TYPE): void;
static onDataUpdate(at: ActiveTable): void;
static onColumnsUpdate(at: ActiveTable): void;
static onRender(at: ActiveTable): void;
}
//# sourceMappingURL=fireEvents.d.ts.map