UNPKG

@twurple/eventsub-base

Version:

Base for the other Twurple EventSub packages

25 lines 934 B
import { DataObject } from '@twurple/common'; import { type HelixUser } from '@twurple/api'; import { type EventSubChannelSharedChatSessionParticipantData } from './EventSubChannelSharedChatSessionParticipant.external.js'; /** * Represents a broadcaster participating in a shared chat session. */ export declare class EventSubChannelSharedChatSessionParticipant extends DataObject<EventSubChannelSharedChatSessionParticipantData> { /** * The ID of the participant broadcaster. */ get broadcasterId(): string; /** * The name of the participant broadcaster. */ get broadcasterName(): string; /** * The display name of the participant broadcaster. */ get broadcasterDisplayName(): string; /** * Gets information about the participant broadcaster. */ getBroadcaster(): Promise<HelixUser>; } //# sourceMappingURL=EventSubChannelSharedChatSessionParticipant.d.ts.map