Skip to content

Instantly share code, notes, and snippets.

View tiagolpadua's full-sized avatar
😃

Tiago tiagolpadua

😃
  • Banco do Brasil
  • Brasília-Brazil
View GitHub Profile
import { RequestOptions, Http, XHRBackend } from '@angular/http';
import { InterceptedHttp } from './intercepted-http'
export function interceptedHttpFactory(xhrBackend: XHRBackend, requestOptions: RequestOptions): Http {
return new InterceptedHttp(xhrBackend, requestOptions);
}