import type { EventBroadcasterInfo } from "../../../common"; import type { ChannelSharedChatSessionHost } from "./common"; /** * @see https://dev.twitch.tv/docs/eventsub/eventsub-reference/#channel-shared-chat-session-begin-event */ export interface ChannelSharedChatSessionBeginEvent extends EventBroadcasterInfo, ChannelSharedChatSessionHost { /** * The unique identifier for the shared chat session. */ session_id: string; /** * The list of participants in the session. */ participants: EventBroadcasterInfo[]; } //# sourceMappingURL=channelSharedChatSessionBegin.d.ts.map