uiconfig.js
    Preparing search index...

    Interface ActionCommand<TA>

    interface ActionCommand<TA = any[]> {
        args: TA;
        onUndoRedo?: (c: ActionUndoCommand) => void;
        redo: () => any;
        target: object;
        type: "UiConfigMethods_action";
        uid: UiObjectConfig;
        undo: () => any;
    }

    Type Parameters

    • TA = any[]

    Hierarchy

    Index

    Properties

    args: TA
    onUndoRedo?: (c: ActionUndoCommand) => void
    redo: () => any
    target: object
    type: "UiConfigMethods_action"
    undo: () => any