> 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.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`noiseSuppression$`](/docs/browser-sdk/v4/reference/participant#noisesuppression-1)

## noiseSuppression

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

Whether noise suppression is enabled.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`noiseSuppression`](/docs/browser-sdk/v4/reference/participant#noisesuppression)

## **Examples**

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