state$

View as MarkdownOpen in Claude
1get state$(): Observable<CallCapabilitiesState>

Observable for the full capabilities state

state

1get state(): CallCapabilitiesState

Current full capabilities state

Examples

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