angular/packages/common/http/public_api.ts
Joey Perrott 9dbe6fc18b refactor: update license text to point to angular.dev (#57901)
Update license text to point to angular.dev instead of angular.io

PR Close #57901
2024-09-24 15:33:00 +02:00

66 lines
1.8 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.dev/license
*/
export {HttpBackend, HttpHandler} from './src/backend';
export {HttpClient} from './src/client';
export {HttpContext, HttpContextToken} from './src/context';
export {FetchBackend} from './src/fetch';
export {HttpHeaders} from './src/headers';
export {
HTTP_INTERCEPTORS,
HttpHandlerFn,
HttpInterceptor,
HttpInterceptorFn,
HttpInterceptorHandler as ɵHttpInterceptorHandler,
HttpInterceptorHandler as ɵHttpInterceptingHandler,
} from './src/interceptor';
export {JsonpClientBackend, JsonpInterceptor} from './src/jsonp';
export {HttpClientJsonpModule, HttpClientModule, HttpClientXsrfModule} from './src/module';
export {
HttpParameterCodec,
HttpParams,
HttpParamsOptions,
HttpUrlEncodingCodec,
} from './src/params';
export {
HttpFeature,
HttpFeatureKind,
provideHttpClient,
withFetch,
withInterceptors,
withInterceptorsFromDi,
withJsonpSupport,
withNoXsrfProtection,
withRequestsMadeViaParent,
withXsrfConfiguration,
} from './src/provider';
export {HttpRequest} from './src/request';
export {
HttpDownloadProgressEvent,
HttpErrorResponse,
HttpEvent,
HttpEventType,
HttpHeaderResponse,
HttpProgressEvent,
HttpResponse,
HttpResponseBase,
HttpSentEvent,
HttpStatusCode,
HttpUploadProgressEvent,
HttpUserEvent,
} from './src/response';
export {
HttpTransferCacheOptions,
withHttpTransferCache as ɵwithHttpTransferCache,
HTTP_TRANSFER_CACHE_ORIGIN_MAP,
} from './src/transfer_cache';
export {HttpXhrBackend} from './src/xhr';
export {HttpXsrfTokenExtractor} from './src/xsrf';
// Private exports
export * from './src/private_export';