layout$

View as MarkdownOpen in Claude
1get layout$(): Observable<string>

Observable of the current layout name.

layout

1get layout(): string | undefined

Current layout name, or undefined if not set.

Examples

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