@twurple/eventsub-base
Version:
Base for the other Twurple EventSub packages
25 lines • 989 B
TypeScript
import { type HelixUser } from '@twurple/api';
import { DataObject } from '@twurple/common';
import { type EventSubChannelHypeTrainSharedParticipantData } from './EventSubChannelHypeTrainSharedParticipant.external.js';
/**
* The broadcaster participating in the shared Hype Train.
*/
export declare class EventSubChannelHypeTrainSharedParticipant extends DataObject<EventSubChannelHypeTrainSharedParticipantData> {
/**
* The ID of the broadcaster participating in the shared Hype Train.
*/
get broadcasterId(): string;
/**
* The name of the broadcaster participating in the shared Hype Train.
*/
get broadcasterName(): string;
/**
* The display name of the broadcaster participating in the shared Hype Train.
*/
get broadcasterDisplayName(): string;
/**
* Gets more information about the broadcaster.
*/
getBroadcaster(): Promise<HelixUser>;
}
//# sourceMappingURL=EventSubChannelHypeTrainSharedParticipant.d.ts.map