Files
xk-admin/apps/web-antd/src/components/canvas-spreadsheet/commands/SetCellValueCommand.ts

13 lines
281 B
TypeScript
Raw Normal View History

2026-06-25 16:09:07 +08:00
import type { SpreadsheetCommand } from '../types';
export function createSetCellValueCommand(
undo: () => void | Promise<void>,
redo: () => void | Promise<void>,
): SpreadsheetCommand {
return {
label: 'setCellValue',
undo,
redo,
};
}