participants$

View as MarkdownOpen in Claude
get participants$(): Observable<CallParticipant[]>

Observable of the participants list, emits on join/leave/update.

participants

get participants(): CallParticipant[]

Current snapshot of all participants in the call.

Examples

call.participants$.subscribe((participants) => {
console.log('participants:', participants);
});