Interface ConferenceParticipant

interface ConferenceParticipant {
    id: string;
    isLocal: boolean;
    isTalking: boolean;
    muted: boolean;
    state: ConferenceParticipantState;
    streams: readonly ManagedStream[];
}

Properties

id: string
isLocal: boolean
isTalking: boolean
muted: boolean
streams: readonly ManagedStream[]