UNPKG

@twitchfy/chatbot

Version:

A powerful node module to make your own Twitch ChatBot

18 lines (17 loc) 328 B
/** * Options for generating an emote URL. */ export interface EmoteURLOptions { /** * The scale of the emote. */ scale?: '1.0' | '2.0' | '3.0'; /** * The theme of the emote. */ theme?: 'light' | 'dark'; /** * The format of the emote. */ format?: 'static' | 'animated'; }