Interface UndoManagerProps

interface UndoManagerProps {
    disabled?: boolean;
    manager: UndoManager;
    notifier?: Notifier;
}

Properties

disabled?: boolean

Not allow to invoke undo/redo Interesting.... Because this is sharable and not scoped to an object it's not clear the best way to disable/protect a sheet. Excel clears the undo stack!

manager: UndoManager
notifier?: Notifier