UNPKG

@twitchfy/chatbot

Version:

A powerful node module to make your own Twitch ChatBot

14 lines (13 loc) 189 B
/** * Represents a stream's category. */ export interface Category { /** * The category Id. */ id: string; /** * The category name. */ name: string; }