UNPKG

@nepwork/dashboards

Version:

Dashboards for emergencies and monitoring

31 lines 849 B
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { __decorate } from "tslib"; import { NgModule } from '@angular/core'; import { NbSharedModule } from '../shared/shared.module'; import { NbUserComponent, } from './user.component'; import { NbBadgeModule } from '../badge/badge.module'; const NB_USER_COMPONENTS = [ NbUserComponent, ]; let NbUserModule = class NbUserModule { }; NbUserModule = __decorate([ NgModule({ imports: [ NbSharedModule, NbBadgeModule, ], declarations: [ ...NB_USER_COMPONENTS, ], exports: [ ...NB_USER_COMPONENTS, ], }) ], NbUserModule); export { NbUserModule }; //# sourceMappingURL=user.module.js.map