UNPKG

@twitchfy/chatbot

Version:

A powerful node module to make your own Twitch ChatBot

14 lines (13 loc) 192 B
/** * Represents a game played in a Twitch's stream. */ export interface Game { /** * The game Id. */ id: string; /** * The game name. */ name: string; }