@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
14 lines (13 loc) • 730 B
JavaScript
import { __decorate } from "tslib";
import { rawDataSymbol, rtfm } from '@twurple/common';
import { EventSubChannelChatBaseNotificationEvent } from './EventSubChannelChatBaseNotificationEvent.js';
/**
* An EventSub event representing a notification for cancelling an outgoing raid in a channel's chat.
*/
let EventSubChannelChatUnraidNotificationEvent = class EventSubChannelChatUnraidNotificationEvent extends EventSubChannelChatBaseNotificationEvent {
type = 'unraid';
};
EventSubChannelChatUnraidNotificationEvent = __decorate([
rtfm('eventsub-base', 'EventSubChannelChatUnraidNotificationEvent', 'broadcasterId')
], EventSubChannelChatUnraidNotificationEvent);
export { EventSubChannelChatUnraidNotificationEvent };