locked$

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

Observable indicating whether the address (room) is locked.

locked

1get locked(): boolean

Whether the address (room) is locked.

Examples

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