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

# LocalOverlay

Represents the local overlay, which displays the user's local camera feed.

## Properties

<ParamField path="mirrored" type="boolean" required={true} toc={true}>
  Whether the local video overlay is mirrored.
</ParamField>

## Methods

### setMirrored

▸ **setMirrored**(): `void`

Mirror the local video overlay when `true`. The mirrored stream is sent to the SignalWire server and is visible to all participants.

#### Parameters

<ParamField path="mirror" type="boolean" required={true} toc={true}>
  Whether to mirror the local video overlay.
</ParamField>

#### Returns

`void`

#### Example

```javascript
await roomSession.localOverlay.setMirrored(true);
```