redo
redo: DebouncedFuncLeading<(Anonymous function)> = throttle(() => {const redo = this.redos.pop();if (!redo) {return;}try {this.undos.push({type: 'undo',json: JSON.stringify(this.currentObjects),});this.replay(redo);} catch (error) {console.error('[TransactionHandler] Redo failed:', error);}}, 100)
Redo transaction