twitch-core
Version:
Twitch bot command client
20 lines (19 loc) • 469 B
TypeScript
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 };