UNPKG

@twurple/chat

Version:

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

11 lines (10 loc) 273 B
import { Message } from 'ircv3'; /** @private */ export class UserState extends Message { constructor(command, contents, config) { super(command, contents, config, { channel: { type: 'channel' }, }); } } UserState.COMMAND = 'USERSTATE';