reconnectedchat
Version:
Framework for the ReconnectedCC Chatbox v2
11 lines (8 loc) • 307 B
text/typescript
import {Data} from "./Data";
/** Sent by the server when a message is sent or queued successfully. */
export interface Success extends Data {
id: number;
/** More information about the success. When sending messages, this may be
* `message_sent` or `message_queued`. */
reason: string;
}