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

# state$

> Observable for the full capabilities state

```ts
get state$(): Observable<CallCapabilitiesState>
```

Observable for the full capabilities state

## state

```ts
get state(): CallCapabilitiesState
```

Current full capabilities state

## **Examples**

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