Interface for an activity that uses Undo/Redo.

interface IUndoer {
    redo: SemanticCommand;
    undo: SemanticCommand;
}

Properties

Properties

A semantic command to execute a redo command for the activity.

A semantic command to execute an undo command for the activity.