UNPKG

ionic-angular

Version:

A powerful framework for building mobile and progressive web apps with JavaScript and Angular 2

39 lines 819 B
import { NgModule } from '@angular/core'; import { Backdrop } from './backdrop'; /** * @hidden */ export class BackdropModule { /** * @return {?} */ static forRoot() { return { ngModule: BackdropModule, providers: [] }; } } BackdropModule.decorators = [ { type: NgModule, args: [{ declarations: [ Backdrop ], exports: [ Backdrop ] },] }, ]; /** * @nocollapse */ BackdropModule.ctorParameters = () => []; function BackdropModule_tsickle_Closure_declarations() { /** @type {?} */ BackdropModule.decorators; /** * @nocollapse * @type {?} */ BackdropModule.ctorParameters; } //# sourceMappingURL=backdrop.module.js.map