fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
15 lines (14 loc) • 377 B
TypeScript
/**
* Represents an error that is thrown when the XMPP connection timeout has been exceeded
*/
declare class XMPPConnectionTimeoutError extends Error {
/**
* The timeout in milliseconds
*/
timeoutMs: number;
/**
* @param timeoutMs The timeout in milliseconds
*/
constructor(timeoutMs: number);
}
export default XMPPConnectionTimeoutError;