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

# noiseSuppression$

> Observable indicating whether noise suppression is enabled.

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

Observable indicating whether noise suppression is enabled.

## noiseSuppression

```ts
get noiseSuppression(): boolean
```

Whether noise suppression is enabled.

## **Examples**

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