layout$

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

Observable of the current layout name.

layout

get layout(): string | undefined

Current layout name, or undefined if not set.

Examples

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