Represents an undo state that contains an array of past states and an array of future states.
UndoState
const state: UndoState = { past: [previousState], future: []}; Copy
const state: UndoState = { past: [previousState], future: []};
An array of future states.
An array of past states.
Generated using TypeDoc
Represents an undo state that contains an array of past states and an array of future states.
Name
UndoState
Example