deaf$

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

Observable indicating whether the participant is deafened.

deaf

1get deaf(): boolean

Whether the participant is deafened (incoming audio muted).

Examples

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