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

# screenshare$

> Observable for screenshare capability

```ts
get screenshare$(): Observable<boolean>
```

Observable for screenshare capability

## screenshare

```ts
get screenshare(): boolean
```

Current screenshare capability

## **Examples**

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