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

# isRegistered$

> Observable that emits when the user registration state changes.

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

Observable that emits when the user registration state changes.

## isRegistered

```ts
get isRegistered(): boolean
```

Whether the user is currently registered.

## **Examples**

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