@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
36 lines • 1.49 kB
JavaScript
/**
* @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 { NbCalendarRangeComponent } from './calendar-range.component';
import { NbCalendarRangeDayCellComponent } from './calendar-range-day-cell.component';
import { NbCalendarRangeYearCellComponent } from './calendar-range-year-cell.component';
import { NbCalendarRangeMonthCellComponent } from './calendar-range-month-cell.component';
import { NbBaseCalendarModule } from './base-calendar.module';
var NbCalendarRangeModule = /** @class */ (function () {
function NbCalendarRangeModule() {
}
NbCalendarRangeModule = __decorate([
NgModule({
imports: [NbBaseCalendarModule],
exports: [NbCalendarRangeComponent],
declarations: [
NbCalendarRangeComponent,
NbCalendarRangeDayCellComponent,
NbCalendarRangeYearCellComponent,
NbCalendarRangeMonthCellComponent,
],
entryComponents: [
NbCalendarRangeDayCellComponent,
NbCalendarRangeMonthCellComponent,
NbCalendarRangeYearCellComponent,
],
})
], NbCalendarRangeModule);
return NbCalendarRangeModule;
}());
export { NbCalendarRangeModule };
//# sourceMappingURL=calendar-range.module.js.map