@nebular/theme
Version:
@nebular/theme
34 lines • 1.12 kB
JavaScript
/**
* @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,
];
export class NbLayoutModule {
}
NbLayoutModule.decorators = [
{ type: NgModule, args: [{
imports: [
NbSharedModule,
],
declarations: [
...NB_LAYOUT_COMPONENTS,
],
providers: [
NbRestoreScrollTopHelper,
],
exports: [
...NB_LAYOUT_COMPONENTS,
],
},] }
];
//# sourceMappingURL=layout.module.js.map