@twurple/chat
Version:
Interact with the Twitch Messaging Interface (aka Twitch chat).
12 lines • 460 B
TypeScript
import { Message, type MessageInternalConfig, type MessageInternalContents } from 'ircv3';
interface RoomStateFields {
channel: string;
}
export interface RoomState extends RoomStateFields {
}
export declare class RoomState extends Message<RoomStateFields> {
static readonly COMMAND = "ROOMSTATE";
constructor(command: string, contents?: MessageInternalContents, config?: MessageInternalConfig);
}
export {};
//# sourceMappingURL=RoomState.d.ts.map