UNPKG

@twitchfy/chatbot

Version:

A powerful node module to make your own Twitch ChatBot

10 lines (9 loc) 216 B
import type { CommandHandler, EventHandler } from '../structures'; /** * Represent the handlers of the chatbot. * @internal */ export interface Handlers { commands: CommandHandler; events: EventHandler; }