1. 更新框架
2. 修复框架更新后导致的问题
This commit is contained in:
李琦
2026-08-10 18:44:39 +08:00
parent 3547c53f89
commit f0a33a628b
150 changed files with 1005 additions and 811 deletions

View File

@@ -1,12 +1,12 @@
import type { SpreadsheetCommand } from '../types';
export function createSetCellValueCommand(
undo: () => void | Promise<void>,
redo: () => void | Promise<void>,
): SpreadsheetCommand {
import type { SpreadsheetCommand } from '../types';
export function createSetCellValueCommand(
undo: () => void | Promise<void>,
redo: () => void | Promise<void>,
): SpreadsheetCommand {
return {
label: 'setCellValue',
undo,
redo,
};
}