UNPKG

ngx-bootstrap

Version:
28 lines 1.06 kB
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { TimepickerComponent } from './timepicker.component'; import { TimepickerActions } from './reducer/timepicker.actions'; import { TimepickerConfig } from './timepicker.config'; import { TimepickerStore } from './reducer/timepicker.store'; var TimepickerModule = (function () { function TimepickerModule() { } TimepickerModule.forRoot = function () { return { ngModule: TimepickerModule, providers: [TimepickerConfig, TimepickerActions, TimepickerStore] }; }; TimepickerModule.decorators = [ { type: NgModule, args: [{ imports: [CommonModule], declarations: [TimepickerComponent], exports: [TimepickerComponent] },] }, ]; /** @nocollapse */ TimepickerModule.ctorParameters = function () { return []; }; return TimepickerModule; }()); export { TimepickerModule }; //# sourceMappingURL=timepicker.module.js.map