AudioActionResponse - Interface representing an audio action response.

interface AudioActionResponse {
    audio?: Blob;
    error?: Error;
    type: "audio";
    value: string;
}

Hierarchy (View Summary)

Properties

Properties

audio?: Blob

The audio data (optional).

error?: Error

Optional error object if an error occurred during the action.

type: "audio"

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

value: string

The value of the response.