@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
23 lines • 787 B
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 { NbCalendarComponent } from './calendar.component';
import { NbBaseCalendarModule } from './base-calendar.module';
var NbCalendarModule = /** @class */ (function () {
function NbCalendarModule() {
}
NbCalendarModule = __decorate([
NgModule({
imports: [NbBaseCalendarModule],
exports: [NbCalendarComponent],
declarations: [NbCalendarComponent],
})
], NbCalendarModule);
return NbCalendarModule;
}());
export { NbCalendarModule };
//# sourceMappingURL=calendar.module.js.map