deaf$

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

Observable indicating whether the participant is deafened.

deaf

get deaf(): boolean

Whether the participant is deafened (incoming audio muted).

Examples

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