b33b89d441
The `HttpParamsOptions` was not documented or included in the public API even though it is a constructor argument of `HttpParams` which is a part of the public API. This commit adds the `HttpParamsOptions` into the exports, thus making it a part of the public API. Resolves #20276 PR Close #35829
20 lines
1.1 KiB
TypeScript
20 lines
1.1 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC 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, HttpClientXsrfModule, HttpInterceptingHandler as ɵHttpInterceptingHandler} from './src/module';
|
|
export {HttpParameterCodec, HttpParams, HttpParamsOptions, HttpUrlEncodingCodec} from './src/params';
|
|
export {HttpRequest} from './src/request';
|
|
export {HttpDownloadProgressEvent, HttpErrorResponse, HttpEvent, HttpEventType, HttpHeaderResponse, HttpProgressEvent, HttpResponse, HttpResponseBase, HttpSentEvent, HttpUploadProgressEvent, HttpUserEvent} from './src/response';
|
|
export {HttpXhrBackend, XhrFactory} from './src/xhr';
|
|
export {HttpXsrfTokenExtractor} from './src/xsrf';
|