interface TYError {
    code:
        | RTCErrorCode
        | VoiceChatErrorCode
        | SystemErrorCode
        | GatewayErrorCode;
    error?: Error;
    message?:
        | RTCErrorMsg
        | VoiceChatErrorMsg
        | SystemErrorMsg
        | GatewayErrorMsg;
}

Properties

Properties

code:
    | RTCErrorCode
    | VoiceChatErrorCode
    | SystemErrorCode
    | GatewayErrorCode
error?: Error
message?:
    | RTCErrorMsg
    | VoiceChatErrorMsg
    | SystemErrorMsg
    | GatewayErrorMsg