/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/common/http/public_api.ts
72 строки
2 KB
Matthieu Riegler
refactor(http): refactor http options
01 май 2026, 01:42
01 май 2026, 01:42
6413e70
Код
Авторство
О чём код?
/** * @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, // The following private symbols isn't used outside this package but has a usage in G3. HttpInterceptorHandler as ɵHttpInterceptingHandler, } from './src/backend'; export {HttpClient, HttpClientCommonOptions} 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, } 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, withXhr, withXsrfConfiguration, } from './src/provider'; export {HttpRequest, HttpRequestOptions} from './src/request'; export {httpResource, HttpResourceFn} from './src/resource'; export {HttpResourceOptions, HttpResourceRef, HttpResourceRequest} from './src/resource_api'; export { HttpDownloadProgressEvent, HttpErrorResponse, HttpEvent, HttpEventType, HttpHeaderResponse, HttpProgressEvent, HttpResponse, HttpResponseBase, HttpSentEvent, HttpStatusCode, HttpUploadProgressEvent, HttpUserEvent, } from './src/response'; export { HTTP_TRANSFER_CACHE_ORIGIN_MAP, HttpTransferCacheOptions, withHttpTransferCache as ɵwithHttpTransferCache, } from './src/transfer_cache'; export {HttpXhrBackend} from './src/xhr'; export {HttpXsrfTokenExtractor} from './src/xsrf'; // Private exports export * from './src/private_export';