import { IStoreState, ID, IRow } from '../index.data'; import { ICommand } from 'valor-unistore-undo'; import { SpreadSheetRuntime } from '../RuntimeContext'; /** * patch某个row * 暂时不允许修改row.cells * 目前仅有的需求: 修改additions */ declare class SetRowDataCommand extends ICommand, IRow, SpreadSheetRuntime> { id?: ID; execute: () => boolean; undo: () => void; do: () => void; } export default SetRowDataCommand;