@twurple/easy-bot
Version:
A simplified framework to get a chat bot running easily.
26 lines • 677 B
TypeScript
import { type HelixUser } from '@twurple/api';
import { type ClearChat } from '@twurple/chat';
/**
* An event representing the chat of a channel getting cleared.
*
* @meta category events
*/
export declare class ChatClearEvent {
/**
* The ID of the broadcaster.
*/
get broadcasterId(): string;
/**
* The name of the broadcaster.
*/
get broadcasterName(): string;
/**
* Gets more information about the broadcaster.
*/
getBroadcaster(): Promise<HelixUser>;
/**
* The full object that contains all the message information.
*/
get messageObject(): ClearChat;
}
//# sourceMappingURL=ChatClearEvent.d.ts.map