Browser SDK
Build voice, video and chat applications for the browser
v4
Stable
type$
1get type$(): Observable<string | undefined>
Observable of the participant type (e.g. 'member', 'screen').
'member'
'screen'
Participant.type$
Participant
1get type(): string | undefined
Participant type (e.g. 'member', 'screen').
Participant.type
type
1selfParticipant.type$.subscribe((type) => {2 console.log('type:', type);3});