p.location-badge. exported from angular2/http defined in angular2/src/http/interfaces.ts (line 59) :markdown Provides an interface to provide type information for HttpFactory when injecting. #Example ``` * import {httpInjectables, HttpFactory, IHttp} from 'angular2/http'; @Component({ appInjector: [httpInjectables] }) @View({ templateUrl: 'people.html' }) class MyComponent { constructor(@Inject(HttpFactory) http:IHttp) { http('people.json').subscribe(res => this.people = res.json()); } } ```