UNPKG

@twurple/chat

Version:

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

14 lines (13 loc) 395 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RoomState = void 0; const ircv3_1 = require("ircv3"); class RoomState extends ircv3_1.Message { constructor(command, contents, config) { super(command, contents, config, { channel: { type: 'channel' }, }); } } exports.RoomState = RoomState; RoomState.COMMAND = 'ROOMSTATE';