UNPKG

twitch-core

Version:
20 lines (19 loc) 469 B
import { TwitchCommandClient } from '../client/TwitchCommandClient'; interface ChatChannel { channel: string; room_id?: string; } declare class TwitchChatChannel { private originalMessage; private client; constructor(originalMessage: ChatChannel, client: TwitchCommandClient); /** * Get channel name */ get name(): string; /** * Get room_id */ get id(): string; } export { TwitchChatChannel };