UNPKG

ionic-angular

Version:

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

49 lines 1.12 kB
import { NgModule } from '@angular/core'; import { IconModule } from '../icon/icon.module'; import { FabButton } from './fab'; import { FabContainer } from './fab-container'; import { FabList } from './fab-list'; /** * @hidden */ export class FabModule { /** * @return {?} */ static forRoot() { return { ngModule: FabModule, providers: [] }; } } FabModule.decorators = [ { type: NgModule, args: [{ imports: [ IconModule ], declarations: [ FabButton, FabContainer, FabList ], exports: [ FabButton, FabContainer, FabList ] },] }, ]; /** * @nocollapse */ FabModule.ctorParameters = () => []; function FabModule_tsickle_Closure_declarations() { /** @type {?} */ FabModule.decorators; /** * @nocollapse * @type {?} */ FabModule.ctorParameters; } //# sourceMappingURL=fab.module.js.map