UNPKG

twitch-api-ts

Version:

Modern wrapper for the Twitch API with typings.

10 lines 381 B
import { TwitchAPI } from '../twitch-api'; import { Emote } from './interface'; export declare class ChatClient { private readonly api; constructor(api: TwitchAPI); getEmotes(broadcaster_id?: string): Promise<Emote[]>; getEmoteSet(emote_set_id: string): Promise<Emote[]>; getGlobalEmotes(): Promise<Emote[]>; } //# sourceMappingURL=chat-client.d.ts.map