Interface ConnectionErrorEvent

Event emitted when a connection error occurs.

interface ConnectionErrorEvent {
    type: "connection:error";
    error: Error;
    context: AdapterContext;
    timestamp: Date;
}

Properties

type
error: Error
timestamp: Date