@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
25 lines • 840 B
TypeScript
import { EventSubChannelBaseModerationEvent } from './EventSubChannelBaseModerationEvent';
import type { HelixUser } from '@twurple/api';
/**
* An EventSub event representing a moderator canceling the raid on a channel.
*/
export declare class EventSubChannelUnraidModerationEvent extends EventSubChannelBaseModerationEvent {
readonly moderationAction = "unraid";
/**
* The ID of the user no longer being raided.
*/
get userId(): string;
/**
* The name of the user no longer being raided.
*/
get userName(): string;
/**
* The display name of the user no longer being raided.
*/
get userDisplayName(): string;
/**
* Gets more information about the user.
*/
getUser(): Promise<HelixUser | null>;
}
//# sourceMappingURL=EventSubChannelUnraidModerationEvent.d.ts.map