reconnectedchat
Version:
Framework for the ReconnectedCC Chatbox v2
18 lines (16 loc) • 428 B
text/typescript
import {Success} from "../packets";
import {RequestError} from "../packets";
import {FormattingMode} from "./RenderedTextObject";
/** @internal */
export interface QueueMessage {
data: {
id: number;
type: string;
user?: string;
name: string | undefined;
text: string;
mode: FormattingMode;
};
resolve: (value: Success) => void;
reject: (reason: Error) => void;
}