UNPKG

@fnlb-project/fnbr

Version:

A library to interact with Epic Games' Fortnite HTTP and XMPP services

15 lines (14 loc) 400 B
/** * Represents an error that is thrown when the stomp websocket connection fails to be established */ declare class StompConnectionError extends Error { /** * The error status code */ statusCode: number; /** * @param error The error that caused the connection to fail */ constructor(message: string, statusCode: number); } export default StompConnectionError;