deaf$

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

Observable indicating whether the participant is deafened.

Inherited from

Participant.deaf$

deaf

1get deaf(): boolean

Whether the participant is deafened (incoming audio muted).

Inherited from

Participant.deaf

Examples

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