UNPKG

@nepwork/dashboards

Version:

Dashboards for emergencies and monitoring

41 lines 1.33 kB
/** * @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 { NbIconModule } from '../icon/icon.module'; import { NbCardComponent, NbCardBodyComponent, NbCardFooterComponent, NbCardHeaderComponent, } from './card.component'; import { NbRevealCardComponent } from './reveal-card/reveal-card.component'; import { NbFlipCardComponent } from './flip-card/flip-card.component'; import { NbCardFrontComponent, NbCardBackComponent } from './shared/shared.component'; const NB_CARD_COMPONENTS = [ NbCardComponent, NbCardBodyComponent, NbCardFooterComponent, NbCardHeaderComponent, NbRevealCardComponent, NbFlipCardComponent, NbCardFrontComponent, NbCardBackComponent, ]; let NbCardModule = class NbCardModule { }; NbCardModule = __decorate([ NgModule({ imports: [ NbSharedModule, NbIconModule, ], declarations: [ ...NB_CARD_COMPONENTS, ], exports: [ ...NB_CARD_COMPONENTS, ], }) ], NbCardModule); export { NbCardModule }; //# sourceMappingURL=card.module.js.map