18 lines
1009 B
TypeScript
18 lines
1009 B
TypeScript
|
/**
|
||
|
* @license
|
||
|
* Copyright Google Inc. All Rights Reserved.
|
||
|
*
|
||
|
* Use of this source code is governed by an MIT-style license that can be
|
||
|
* found in the LICENSE file at https://angular.io/license
|
||
|
*/
|
||
|
|
||
|
export {HttpBackend, HttpHandler} from './src/backend';
|
||
|
export {HttpClient} from './src/client';
|
||
|
export {HttpHeaders} from './src/headers';
|
||
|
export {HTTP_INTERCEPTORS, HttpInterceptor} from './src/interceptor';
|
||
|
export {JsonpClientBackend, JsonpInterceptor} from './src/jsonp';
|
||
|
export {HttpClientJsonpModule, HttpClientModule, interceptingHandler as ɵinterceptingHandler} from './src/module';
|
||
|
export {HttpRequest} from './src/request';
|
||
|
export {HttpDownloadProgressEvent, HttpErrorResponse, HttpEvent, HttpEventType, HttpHeaderResponse, HttpProgressEvent, HttpResponse, HttpResponseBase, HttpSentEvent, HttpUserEvent} from './src/response';
|
||
|
export {HttpStandardUrlParameterCodec, HttpUrlEncodedBody, HttpUrlParameterCodec} from './src/url_encoded_body';
|
||
|
export {HttpXhrBackend, XhrFactory} from './src/xhr';
|