bea-shell
Version:
An angular component for a configurable application shell, consisting of a topbar and sidebar
11 lines (10 loc) • 378 B
TypeScript
import { OnInit } from '@angular/core';
import { BeaShellOptions } from '@bea-shell/common/objects';
import { BeaShellService } from '@bea-shell/bea-shell.service';
export declare class ContentComponent implements OnInit {
private beaShell;
options: BeaShellOptions;
withTopbar: boolean;
constructor(beaShell: BeaShellService);
ngOnInit(): void;
}