UNPKG

ionic-angular

Version:

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

45 lines 1.05 kB
import { NgModule } from '@angular/core'; import { ButtonModule } from '../button/button.module'; import { IconModule } from '../icon/icon.module'; import { Searchbar } from './searchbar'; /** * @hidden */ export class SearchbarModule { /** * @return {?} */ static forRoot() { return { ngModule: SearchbarModule, providers: [] }; } } SearchbarModule.decorators = [ { type: NgModule, args: [{ imports: [ ButtonModule, IconModule ], declarations: [ Searchbar ], exports: [ Searchbar ] },] }, ]; /** * @nocollapse */ SearchbarModule.ctorParameters = () => []; function SearchbarModule_tsickle_Closure_declarations() { /** @type {?} */ SearchbarModule.decorators; /** * @nocollapse * @type {?} */ SearchbarModule.ctorParameters; } //# sourceMappingURL=searchbar.module.js.map