// Angular imports // import { NgModule } from '@angular/core'; import { UpgradeModule } from '@angular/upgrade/static'; // Services // import { SearchService } from './search.service'; import { STATE_SERVICE } from 'ajs-upgraded-providers'; // Build application module @NgModule({ imports: [ UpgradeModule ], declarations: [ ], providers: [ STATE_SERVICE, SearchService ], entryComponents: [ ] }) export class SearchModule { }