UNPKG

@twurple/chat

Version:

Interact with the Twitch Messaging Interface (aka Twitch chat).

10 lines (9 loc) 257 B
import { Message } from 'ircv3'; export class RoomState extends Message { constructor(command, contents, config) { super(command, contents, config, { channel: { type: 'channel' }, }); } } RoomState.COMMAND = 'ROOMSTATE';