Interface ErrorChatResponseContent

interface ErrorChatResponseContent {
    error: Error;
    kind: "error";
    asString?(): undefined | string;
    merge?(nextChatResponseContent): boolean;
}

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

error: Error
kind: "error"

Methods