The moved `XhrFactory` still needs to be available from `@angular/common/http` for some libraries that were built prior to 12.0.0, otherwise they cannot be used in applications built post-12.0.0. This commit adds back the re-export of `XhrFactory` and deprecates it. PR Close #41393
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.7 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
 | 
						|
 */
 | 
						|
 | 
						|
import {XhrFactory as XhrFactory_fromAngularCommon} from '@angular/common';
 | 
						|
 | 
						|
/**
 | 
						|
 * A wrapper around the `XMLHttpRequest` constructor.
 | 
						|
 *
 | 
						|
 * @publicApi
 | 
						|
 * @see `XhrFactory`
 | 
						|
 * @deprecated
 | 
						|
 * `XhrFactory` has moved, please import `XhrFactory` from `@angular/common` instead.
 | 
						|
 */
 | 
						|
export type XhrFactory = XhrFactory_fromAngularCommon;
 | 
						|
/**
 | 
						|
 * A wrapper around the `XMLHttpRequest` constructor.
 | 
						|
 *
 | 
						|
 * @publicApi
 | 
						|
 * @see `XhrFactory`
 | 
						|
 * @deprecated
 | 
						|
 * `XhrFactory` has moved, please import `XhrFactory` from `@angular/common` instead.
 | 
						|
 */
 | 
						|
export const XhrFactory = XhrFactory_fromAngularCommon;
 | 
						|
 | 
						|
export {HttpBackend, HttpHandler} from './src/backend';
 | 
						|
export {HttpClient} from './src/client';
 | 
						|
export {HttpContext, HttpContextToken} from './src/context';
 | 
						|
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, HttpStatusCode, HttpUploadProgressEvent, HttpUserEvent} from './src/response';
 | 
						|
export {HttpXhrBackend} from './src/xhr';
 | 
						|
export {HttpXsrfTokenExtractor} from './src/xsrf';
 |