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

# screenShareStatus$

> Observable of the current screen share status.

```ts
get screenShareStatus$(): Observable<ScreenShareStatus>
```

Observable of the current screen share status.

## screenShareStatus

```ts
get screenShareStatus(): ScreenShareStatus
```

Current screen share status.

## **Examples**

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