UNPKG

@twurple/eventsub-base

Version:

Base for the other Twurple EventSub packages

25 lines 848 B
import type { HelixUser } from '@twurple/api'; import { EventSubChannelBaseModerationEvent } from './EventSubChannelBaseModerationEvent.js'; /** * An EventSub event representing a moderator removing a timeout from a user on a channel. */ export declare class EventSubChannelUntimeoutModerationEvent extends EventSubChannelBaseModerationEvent { readonly moderationAction: "untimeout"; /** * The ID of the user being untimed out. */ get userId(): string; /** * The name of the user being untimed out. */ get userName(): string; /** * The display name of the user being untimed out. */ get userDisplayName(): string; /** * Gets more information about the user. */ getUser(): Promise<HelixUser | null>; } //# sourceMappingURL=EventSubChannelUntimeoutModerationEvent.d.ts.map