deaf$

View as MarkdownOpen in Claude
get deaf$(): Observable<boolean | undefined>

Observable indicating whether the participant is deafened.

Inherited from

Participant.deaf$

deaf

get deaf(): boolean

Whether the participant is deafened (incoming audio muted).

Inherited from

Participant.deaf

Examples

selfParticipant.deaf$.subscribe((deaf) => {
console.log('deaf:', deaf);
});