Interface ActionCommand

interface ActionCommand {
    args: any[];
    config: UiObjectConfig;
    redo: () => any;
    target: object;
    type: "UiConfigMethods_action";
    undo: () => any;
}

Hierarchy

  • JSUndoManagerCommand2
    • ActionCommand

Properties

args: any[]
redo: () => any
target: object
type: "UiConfigMethods_action"
undo: () => any