UNPKG

ionic-angular

Version:

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

50 lines 1.23 kB
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { BackdropModule } from '../backdrop/backdrop.module'; import { SpinnerModule } from '../spinner/spinner.module'; import { LoadingCmp } from './loading-component'; /** * @hidden */ export class LoadingModule { /** * @return {?} */ static forRoot() { return { ngModule: LoadingModule, providers: [] }; } } LoadingModule.decorators = [ { type: NgModule, args: [{ imports: [ BackdropModule, CommonModule, SpinnerModule ], declarations: [ LoadingCmp ], exports: [ LoadingCmp ], entryComponents: [ LoadingCmp ] },] }, ]; /** * @nocollapse */ LoadingModule.ctorParameters = () => []; function LoadingModule_tsickle_Closure_declarations() { /** @type {?} */ LoadingModule.decorators; /** * @nocollapse * @type {?} */ LoadingModule.ctorParameters; } //# sourceMappingURL=loading.module.js.map