interface ConnectionError {
    bytesParsed: number;
    code: string;
    message: string;
    name: string;
    rawPacket: {
        data: number[];
        type: string;
    };
    stack?: string;
}

Hierarchy (view full)

Properties

bytesParsed: number
code: string
message: string
name: string
rawPacket: {
    data: number[];
    type: string;
}

Type declaration

  • data: number[]
  • type: string
stack?: string