Browser SDK
Build voice, video and chat applications for the browser
v4
Stable
status$
1get status$(): Observable<CallStatus>
Observable of the current call status (e.g. 'ringing', 'connected').
'ringing'
'connected'
1get status(): CallStatus
Current call status.
1call.status$.subscribe((status) => {2 console.log('status:', status);3});