UNPKG

@twurple/api

Version:

Interact with Twitch's API.

17 lines 654 B
import { DataObject } from '@twurple/common'; import { type HelixSharedChatSessionParticipantData } from '../../interfaces/endpoints/shared-chat-session.external'; import { type HelixUser } from '../user/HelixUser'; /** * A shared chat session participant. */ export declare class HelixSharedChatSessionParticipant extends DataObject<HelixSharedChatSessionParticipantData> { /** * The ID of the participant broadcaster. */ get broadcasterId(): string; /** * Gets information about the participant broadcaster. */ getBroadcaster(): Promise<HelixUser>; } //# sourceMappingURL=HelixSharedChatSessionParticipant.d.ts.map