CustomActionResponse - Interface representing a custom action response.

interface CustomActionResponse {
    error?: Error;
    type: "custom";
    value: string;
}

Hierarchy (View Summary)

Properties

Properties

error?: Error

Optional error object if an error occurred during the action.

type: "custom"

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

value: string

The value of the response.