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

# type$

> Observable of the participant type (e.g.

```ts
get type$(): Observable<string | undefined>
```

Observable of the participant type (e.g. `'member'`, `'screen'`).

## type

```ts
get type(): string | undefined
```

Participant type (e.g. `'member'`, `'screen'`).

## **Examples**

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