2017-03-23 00:13:24 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2017-03-23 00:13:24 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2017-03-23 00:13:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export {HttpBackend, HttpHandler} from './src/backend';
|
|
|
|
|
export {HttpClient} from './src/client';
|
2021-03-09 20:20:48 +00:00
|
|
|
export {HttpContext, HttpContextToken} from './src/context';
|
2023-05-09 21:34:15 +00:00
|
|
|
export {FetchBackend} from './src/fetch';
|
2017-03-23 00:13:24 +00:00
|
|
|
export {HttpHeaders} from './src/headers';
|
2023-02-28 11:44:28 +00:00
|
|
|
export {
|
|
|
|
|
HTTP_INTERCEPTORS,
|
|
|
|
|
HttpHandlerFn,
|
|
|
|
|
HttpInterceptor,
|
|
|
|
|
HttpInterceptorFn,
|
|
|
|
|
HttpInterceptorHandler as ɵHttpInterceptorHandler,
|
|
|
|
|
HttpInterceptorHandler as ɵHttpInterceptingHandler,
|
|
|
|
|
} from './src/interceptor';
|
2017-03-23 00:13:24 +00:00
|
|
|
export {JsonpClientBackend, JsonpInterceptor} from './src/jsonp';
|
2022-09-21 00:02:30 +00:00
|
|
|
export {HttpClientJsonpModule, HttpClientModule, HttpClientXsrfModule} from './src/module';
|
2020-03-03 15:51:32 +00:00
|
|
|
export {
|
|
|
|
|
HttpParameterCodec,
|
|
|
|
|
HttpParams,
|
|
|
|
|
HttpParamsOptions,
|
|
|
|
|
HttpUrlEncodingCodec,
|
|
|
|
|
} from './src/params';
|
2023-05-09 21:34:15 +00:00
|
|
|
export {
|
|
|
|
|
HttpFeature,
|
|
|
|
|
HttpFeatureKind,
|
|
|
|
|
provideHttpClient,
|
|
|
|
|
withFetch,
|
|
|
|
|
withInterceptors,
|
|
|
|
|
withInterceptorsFromDi,
|
|
|
|
|
withJsonpSupport,
|
|
|
|
|
withNoXsrfProtection,
|
|
|
|
|
withRequestsMadeViaParent,
|
|
|
|
|
withXsrfConfiguration,
|
|
|
|
|
} from './src/provider';
|
2017-03-23 00:13:24 +00:00
|
|
|
export {HttpRequest} from './src/request';
|
2021-01-26 18:06:42 +00:00
|
|
|
export {
|
|
|
|
|
HttpDownloadProgressEvent,
|
|
|
|
|
HttpErrorResponse,
|
|
|
|
|
HttpEvent,
|
|
|
|
|
HttpEventType,
|
|
|
|
|
HttpHeaderResponse,
|
|
|
|
|
HttpProgressEvent,
|
|
|
|
|
HttpResponse,
|
|
|
|
|
HttpResponseBase,
|
|
|
|
|
HttpSentEvent,
|
|
|
|
|
HttpStatusCode,
|
|
|
|
|
HttpUploadProgressEvent,
|
|
|
|
|
HttpUserEvent,
|
|
|
|
|
} from './src/response';
|
2024-12-13 10:40:20 +00:00
|
|
|
export {HttpResourceRef, HttpResourceOptions, HttpResourceRequest} from './src/resource_api';
|
|
|
|
|
export {httpResource, HttpResourceFn} from './src/resource';
|
2023-10-04 20:19:10 +00:00
|
|
|
export {
|
|
|
|
|
HttpTransferCacheOptions,
|
|
|
|
|
withHttpTransferCache as ɵwithHttpTransferCache,
|
2024-04-09 22:47:35 +00:00
|
|
|
HTTP_TRANSFER_CACHE_ORIGIN_MAP,
|
2023-10-04 20:19:10 +00:00
|
|
|
} from './src/transfer_cache';
|
2021-03-23 09:28:54 +00:00
|
|
|
export {HttpXhrBackend} from './src/xhr';
|
2017-07-14 16:44:33 +00:00
|
|
|
export {HttpXsrfTokenExtractor} from './src/xsrf';
|
2023-10-23 12:58:03 +00:00
|
|
|
|
|
|
|
|
// Private exports
|
|
|
|
|
export * from './src/private_export';
|