@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
25 lines • 905 B
TypeScript
import type { HelixUser } from '@twurple/api';
import { EventSubChannelBaseModerationEvent } from './EventSubChannelBaseModerationEvent.js';
/**
* An EventSub event representing a moderator untimming out a user in another channel during a shared chat session.
*/
export declare class EventSubChannelSharedChatUntimeoutModerationEvent extends EventSubChannelBaseModerationEvent {
readonly moderationAction: "shared_chat_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=EventSubChannelSharedChatUntimeoutModerationEvent.d.ts.map