@twitchfy/chatbot
Version:
A powerful node module to make your own Twitch ChatBot
23 lines (22 loc) • 555 B
TypeScript
import type { CheermoteSize } from '@twitchfy/api-types';
/**
* The options for generating a cheermote URL.
*/
export interface CheermoteURLOptions {
/**
* The tier of the cheermote.
*/
tier: number;
/**
* The size of the cheermote. See {@link CheermoteSize} for possible values.
*/
size?: CheermoteSize;
/**
* The format of the cheermote. Default is 'static'.
*/
format?: 'static' | 'animated';
/**
* The theme of the cheermote. Default is 'light'.
*/
theme?: 'light' | 'dark';
}