@twurple/chat
Version:
Interact with the Twitch Messaging Interface (aka Twitch chat).
18 lines • 430 B
TypeScript
/**
* Information about a raid.
*/
export 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;
}
//# sourceMappingURL=ChatRitualInfo.d.ts.map