> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# echoCancellation$

> Observable indicating whether echo cancellation is enabled.

```ts
get echoCancellation$(): Observable<boolean | undefined>
```

Observable indicating whether echo cancellation is enabled.

## echoCancellation

```ts
get echoCancellation(): boolean
```

Whether echo cancellation is enabled.

## **Examples**

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