UNPKG

@twurple/eventsub-base

Version:

Base for the other Twurple EventSub packages

25 lines 823 B
import type { HelixUser } from '@twurple/api'; import { EventSubChannelBaseModerationEvent } from './EventSubChannelBaseModerationEvent.js'; /** * An EventSub event representing a user having lost VIP status on a channel. */ export declare class EventSubChannelUnvipModerationEvent extends EventSubChannelBaseModerationEvent { readonly moderationAction: "unvip"; /** * The ID of the user losing VIP status. */ get userId(): string; /** * The name of the user losing VIP status. */ get userName(): string; /** * The display name of the user losing VIP status. */ get userDisplayName(): string; /** * Gets more information about the user. */ getUser(): Promise<HelixUser | null>; } //# sourceMappingURL=EventSubChannelUnvipModerationEvent.d.ts.map