Represents the response structure for actions. ActionResponse

interface ActionResponse {
    error?: Error;
    type: string;
    value: string;
}

Hierarchy (View Summary)

Properties

Properties

error?: Error

Optional error object if an error occurred during the action.

type: string

The type of the response.

value: string

The value of the response.