locked$

View as MarkdownOpen in Claude
1get locked$(): Observable<boolean>

Observable indicating whether the call room is locked.

locked

1get locked(): boolean

Whether the call room is locked.

Examples

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