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