@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
36 lines • 1.1 kB
JavaScript
import { __decorate } from "tslib";
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { NgModule } from '@angular/core';
import { NbSharedModule } from '../shared/shared.module';
import { NbLayoutComponent, NbLayoutColumnComponent, NbLayoutFooterComponent, NbLayoutHeaderComponent, } from './layout.component';
import { NbRestoreScrollTopHelper } from './restore-scroll-top.service';
const NB_LAYOUT_COMPONENTS = [
NbLayoutComponent,
NbLayoutColumnComponent,
NbLayoutFooterComponent,
NbLayoutHeaderComponent,
];
let NbLayoutModule = class NbLayoutModule {
};
NbLayoutModule = __decorate([
NgModule({
imports: [
NbSharedModule,
],
declarations: [
...NB_LAYOUT_COMPONENTS,
],
providers: [
NbRestoreScrollTopHelper,
],
exports: [
...NB_LAYOUT_COMPONENTS,
],
})
], NbLayoutModule);
export { NbLayoutModule };
//# sourceMappingURL=layout.module.js.map