interface HistoryAction {
    name: string;
    redo: Function;
    undo: Function;
}

Properties

Properties

name: string

The action name

redo: Function

The redo function

undo: Function

The undo function