echoCancellation$

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

Observable indicating whether echo cancellation is enabled.

echoCancellation

1get echoCancellation(): boolean

Whether echo cancellation is enabled.

Examples

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