type$

View as MarkdownOpen in Claude
1get type$(): Observable<string | undefined>

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

Inherited from

Participant.type$

type

1get type(): string | undefined

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

Inherited from

Participant.type

Examples

1selfParticipant.type$.subscribe((type) => {
2 console.log('type:', type);
3});