CustomActionRequest - Interface representing a custom action request.

interface CustomActionRequest {
    addMessage?: boolean;
    always?: boolean;
    Component: Element;
    response?: CustomActionResponse;
    type: "custom";
}

Hierarchy (View Summary)

Properties

addMessage?: boolean

Indicates if a message should be added.

always?: boolean

Indicates if the action should always be performed.

Component: Element

The JSX element representing the custom action.

The response for the custom action (optional).

type: "custom"

The type of the request. Value is 'custom'.