UNPKG

@twurple/eventsub-base

Version:

Base for the other Twurple EventSub packages

17 lines (16 loc) 723 B
import { __decorate } from "tslib"; import { rtfm } from '@twurple/common'; import { EventSubChannelBaseModerationEvent } from "./EventSubChannelBaseModerationEvent.mjs"; /** * An EventSub event representing a moderator disabling slow mode on a channel. */ let EventSubChannelSlowOffModerationEvent = class EventSubChannelSlowOffModerationEvent extends EventSubChannelBaseModerationEvent { constructor() { super(...arguments); this.moderationAction = 'slowoff'; } }; EventSubChannelSlowOffModerationEvent = __decorate([ rtfm('eventsub-base', 'EventSubChannelSlowOffModerationEvent', 'broadcasterId') ], EventSubChannelSlowOffModerationEvent); export { EventSubChannelSlowOffModerationEvent };