UNPKG

958 BJavaScriptView Raw
1import { NgModule } from '@angular/core';
2import { ModalBackdropComponent } from './modal-backdrop.component';
3import { ModalDirective } from './modal.component';
4import { PositioningService } from '../positioning';
5import { ComponentLoaderFactory } from '../component-loader';
6export var ModalModule = (function () {
7 function ModalModule() {
8 }
9 ModalModule.forRoot = function () {
10 return { ngModule: ModalModule, providers: [ComponentLoaderFactory, PositioningService] };
11 };
12 ModalModule.decorators = [
13 { type: NgModule, args: [{
14 declarations: [ModalBackdropComponent, ModalDirective],
15 exports: [ModalBackdropComponent, ModalDirective],
16 entryComponents: [ModalBackdropComponent]
17 },] },
18 ];
19 /** @nocollapse */
20 ModalModule.ctorParameters = function () { return []; };
21 return ModalModule;
22}());
23//# sourceMappingURL=modal.module.js.map
\No newline at end of file