UNPKG

@nebular/theme

Version:
40 lines 1.43 kB
/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { __decorate, __spreadArrays } 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'; var NB_CARD_COMPONENTS = [ NbCardComponent, NbCardBodyComponent, NbCardFooterComponent, NbCardHeaderComponent, NbRevealCardComponent, NbFlipCardComponent, NbCardFrontComponent, NbCardBackComponent, ]; var NbCardModule = /** @class */ (function () { function NbCardModule() { } NbCardModule = __decorate([ NgModule({ imports: [ NbSharedModule, NbIconModule, ], declarations: __spreadArrays(NB_CARD_COMPONENTS), exports: __spreadArrays(NB_CARD_COMPONENTS), }) ], NbCardModule); return NbCardModule; }()); export { NbCardModule }; //# sourceMappingURL=card.module.js.map