@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
20 lines (19 loc) • 1.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventSubChannelChatUnraidNotificationEvent = void 0;
const tslib_1 = require("tslib");
const common_1 = require("@twurple/common");
const EventSubChannelChatBaseNotificationEvent_1 = require("./EventSubChannelChatBaseNotificationEvent");
/**
* An EventSub event representing a notification for cancelling an outgoing raid in a channel's chat.
*/
let EventSubChannelChatUnraidNotificationEvent = class EventSubChannelChatUnraidNotificationEvent extends EventSubChannelChatBaseNotificationEvent_1.EventSubChannelChatBaseNotificationEvent {
constructor() {
super(...arguments);
this.type = 'unraid';
}
};
exports.EventSubChannelChatUnraidNotificationEvent = EventSubChannelChatUnraidNotificationEvent;
exports.EventSubChannelChatUnraidNotificationEvent = EventSubChannelChatUnraidNotificationEvent = tslib_1.__decorate([
(0, common_1.rtfm)('eventsub-base', 'EventSubChannelChatUnraidNotificationEvent', 'broadcasterId')
], EventSubChannelChatUnraidNotificationEvent);