UNPKG

bea-shell

Version:

An angular component for a configurable application shell, consisting of a topbar and sidebar

13 lines (12 loc) 484 B
import { OnInit } from '@angular/core'; import { Observable, Subject } from 'rxjs'; import { BeaShellService } from '@bea-shell/bea-shell.service'; import { BeaShellOptions } from '@bea-shell/common/objects'; export declare class TopbarComponent implements OnInit { private beaShell; options: Observable<BeaShellOptions>; expanded: Subject<boolean>; constructor(beaShell: BeaShellService); ngOnInit(): void; onMenuButtonClick(expand: any): void; }