@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
14 lines (13 loc) • 658 B
JavaScript
import { __decorate } from "tslib";
import { rtfm } from '@twurple/common';
import { EventSubChannelBaseModerationEvent } from './EventSubChannelBaseModerationEvent.js';
/**
* An EventSub event representing a moderator disabling slow mode on a channel.
*/
let EventSubChannelSlowOffModerationEvent = class EventSubChannelSlowOffModerationEvent extends EventSubChannelBaseModerationEvent {
moderationAction = 'slowoff';
};
EventSubChannelSlowOffModerationEvent = __decorate([
rtfm('eventsub-base', 'EventSubChannelSlowOffModerationEvent', 'broadcasterId')
], EventSubChannelSlowOffModerationEvent);
export { EventSubChannelSlowOffModerationEvent };