Briyah SDK - v2.0.6
    Preparing search index...

    Interface RoomErrorUpdate

    A turn that died, delivered on the room's 'update' channel.

    Same event name as RoomMessageUpdate rather than 'error': an EventEmitter throws when an 'error' event has no listener, which would take down a host that only subscribed to updates.

    interface RoomErrorUpdate {
        errorType?: string;
        message: string;
        timestamp: number;
        type: "error";
    }
    Index
    errorType?: string

    Error class name, e.g. 'InsufficientBalanceError'

    message: string
    timestamp: number
    type: "error"