Variable: redone
Specifies if this edit has been redone. Default is false.
Variable: significant
Specifies if the undoable change is significant. Default is true.
Variable: source
Specifies the source of the edit.
Variable: undone
Specifies if this edit has been undone. Default is false.
Function: add
Adds the specified change to this edit. The change is an object that is expected to either have an undo and redo, or an execute function.
Function: die
Hook to free resources after the edit has been removed from the command history. This implementation is empty.
Function: isEmpty
Returns true if the this edit contains no changes.
Function: isSignificant
Returns
Function: notify
Hook to notify any listeners of the changes after an
Function: redo
Redoes all changes in this edit.
Function: undo
Undoes all changes in this edit.
Generated using TypeDoc
Variable: changes
Array that contains the changes that make up this edit. The changes are expected to either have an undo and redo function, or an execute function. Default is an empty array.