Type alias WebSocketReliableError

WebSocketReliableError: {
    name: "Socket disconnection";
    reason: string;
    type: "WebSocketReliableError";
    url: string;
} | {
    name: "Server shutdown";
    type: "WebSocketReliableError";
    url: string;
} | {
    name: "Connection failed";
    reason: string;
    type: "WebSocketReliableError";
    url: string;
}

Type declaration

  • name: "Socket disconnection"
  • reason: string
  • type: "WebSocketReliableError"
  • url: string

Type declaration

  • name: "Server shutdown"
  • type: "WebSocketReliableError"
  • url: string

Type declaration

  • name: "Connection failed"
  • reason: string
  • type: "WebSocketReliableError"
  • url: string

Generated using TypeDoc