UNPKG

twitch-chat-client

Version:

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

18 lines (17 loc) 393 B
/** * Information about a raid. */ export default interface ChatRitualInfo { /** * The name of the ritual. * * Currently, the only known ritual is "new_chatter". */ ritualName: string; /** * The message sent with the ritual. * * With the "new_chatter" ritual, you can choose between a set list of emotes to send. */ message: string; }