@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
17 lines • 751 B
TypeScript
import { EventSubChannelCharityAmount } from '../common/EventSubChannelCharityAmount.js';
import { EventSubChannelChatBaseNotificationEvent } from './EventSubChannelChatBaseNotificationEvent.js';
/**
* An EventSub event representing a notification for a charity donation in a channel's chat.
*/
export declare class EventSubChannelChatCharityDonationNotificationEvent extends EventSubChannelChatBaseNotificationEvent {
readonly type: "charity_donation";
/**
* The name of the charity that was donated to.
*/
get charityName(): string;
/**
* The amount of money that was donated.
*/
get amount(): EventSubChannelCharityAmount;
}
//# sourceMappingURL=EventSubChannelChatCharityDonationNotificationEvent.d.ts.map