UNPKG

@twurple/chat

Version:

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

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