twitch-core
Version:
Twitch bot command client
8 lines (7 loc) • 398 B
TypeScript
import { TwitchCommandClient } from '../client/TwitchCommandClient';
import { TwitchChatMessage } from '../messages/TwitchChatMessage';
import { CommandOptions, TwitchChatCommand } from './TwitchChatCommand';
export declare class TextCommand extends TwitchChatCommand {
constructor(client: TwitchCommandClient, options: CommandOptions);
run(msg: TwitchChatMessage): Promise<void>;
}