@nebular/theme
Version:
@nebular/theme
29 lines • 867 B
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 { NbUserComponent, } from './user.component';
import { NbBadgeModule } from '../badge/badge.module';
const NB_USER_COMPONENTS = [
NbUserComponent,
];
export class NbUserModule {
}
NbUserModule.decorators = [
{ type: NgModule, args: [{
imports: [
NbSharedModule,
NbBadgeModule,
],
declarations: [
...NB_USER_COMPONENTS,
],
exports: [
...NB_USER_COMPONENTS,
],
},] }
];
//# sourceMappingURL=user.module.js.map