self$

View as MarkdownOpen in Claude
get self$(): Observable<CallSelfParticipant>

Observable of the local (self) participant.

self

get self(): CallSelfParticipant | null

The local participant, or null if not yet joined.

Examples

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