twitch-core
Version:
Twitch bot command client
17 lines (16 loc) • 434 B
TypeScript
import { TwitchCommandClient } from '../client/TwitchCommandClient';
interface Emotes {
code: string;
emoticon_set: number;
id: number;
channel_id: string | null;
channel_name: string | null;
}
export declare class EmotesManager {
private client;
private emotes;
constructor(client: TwitchCommandClient);
getGlobalEmotes(): Promise<void>;
getRandomEmote(): Emotes;
}
export {};