UNPKG

@twurple/eventsub-base

Version:

Base for the other Twurple EventSub packages

14 lines (13 loc) 719 B
import { __decorate } from "tslib"; import { rtfm } from '@twurple/common'; import { EventSubChannelBaseModerationEvent } from './EventSubChannelBaseModerationEvent.js'; /** * An EventSub event representing a moderator disabling subscribers-only mode on a channel. */ let EventSubChannelSubscribersOffModerationEvent = class EventSubChannelSubscribersOffModerationEvent extends EventSubChannelBaseModerationEvent { moderationAction = 'subscribersoff'; }; EventSubChannelSubscribersOffModerationEvent = __decorate([ rtfm('eventsub-base', 'EventSubChannelSubscribersOffModerationEvent', 'broadcasterId') ], EventSubChannelSubscribersOffModerationEvent); export { EventSubChannelSubscribersOffModerationEvent };