type$

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

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

type

1get type(): string | undefined

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

Examples

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