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

# ready$

> Observable that emits true when the client is both connected and authenticated.

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

Observable that emits `true` when the client is both connected and authenticated.

## **Examples**

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