reconnectedchat
Version:
Framework for the ReconnectedCC Chatbox v2
17 lines (13 loc) • 378 B
text/typescript
import {Data} from "./Data";
/**
* Sent by the server when an error occurs.
*
* @see https://docs.reconnected.cc/chatbox/websocket.html#error-packet
*/
export interface RequestError extends Data {
id: number | undefined;
/** The type of error that occurred. */
error: string;
/** A human-readable message describing the error. */
message: string;
}