ionic2-calendar-scheduler
Version:
Ionic5 calendar scheduler component
24 lines (23 loc) • 858 B
JavaScript
import * as tslib_1 from "tslib";
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { IonicModule } from '@ionic/angular';
import { WeekViewComponent } from './weekview';
import { CalendarComponent } from './calendar';
import { initPositionScrollComponent } from './init-position-scroll';
var NgCalendarModule = /** @class */ (function () {
function NgCalendarModule() {
}
NgCalendarModule = tslib_1.__decorate([
NgModule({
declarations: [
WeekViewComponent, CalendarComponent, initPositionScrollComponent
],
imports: [IonicModule, CommonModule],
exports: [CalendarComponent],
entryComponents: [CalendarComponent]
})
], NgCalendarModule);
return NgCalendarModule;
}());
export { NgCalendarModule };