self$

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

Observable of the local (self) participant.

self

1get self(): CallSelfParticipant | null

The local participant, or null if not yet joined.

Examples

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