Interface NgUndoState

Represents a state object for tracking undo history for multiple properties.

Name

NgUndoState

Example

const state: NgUndoState = {
propertyName1: {
past: [previousState1],
future: []
},
propertyName2: {
past: [previousState2],
future: []
},
};

Hierarchy

  • NgUndoState

Indexable

[key: string]: UndoState

Generated using TypeDoc