UNPKG

@twitchfy/chatbot

Version:

A powerful node module to make your own Twitch ChatBot

6 lines (5 loc) 304 B
import type { SubscriptionTypes } from '@twitchfy/eventsub'; /** * The EventSub events which the chatbot could listen. */ export type ChannelEvents = keyof Pick<typeof SubscriptionTypes, 'ChannelChatClear' | 'ChannelFollow' | 'ChannelUpdate' | 'StreamOnline' | 'ChannelChatMessage' | 'StreamOffline'>;