UNPKG

ionic-angular

Version:

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

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