/** * Created by yulonh on 2016/11/22. */ import { ConnectionBackend, XHRBackend } from '@angular/http'; import { HttpInterceptor } from './http_interceptor'; import { HttpInterceptorConnection } from './http_interceptor_connection'; export declare class HttpInterceptorBackend implements ConnectionBackend { private httpInterceptors; private xhrBackend; constructor(httpInterceptors: HttpInterceptor[], xhrBackend: XHRBackend); createConnection(request: any): HttpInterceptorConnection; }