Package Exports
- @azure/core-http-compat
- @azure/core-http-compat/dist-esm/src/index.js
- @azure/core-http-compat/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@azure/core-http-compat) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Azure Core HTTP Compatibility library for JavaScript
This library provides classes and interfaces to be used by Azure client libraries that want to move from using @azure/core-http to @azure/core-client & @azure/core-rest-pipeline without causing breaking changes in their public API surface.
Usage
ExtendedCommonClientOptions
With @azure/core-http library, the options parameter to the custom client will look like:
export interface SearchClientOptions extends PipelineOptions {
apiVersion?: string;
}With the @azure/core-client & @azure/core-rest-pipeline libraries, the options parameter to the custom client will look like:
export interface SearchClientOptions extends CommonClientOptions {
apiVersion?: string;
}With the Core HTTP Compatibility library, the options parameter to the custom client will look like:
export interface SearchClientOptions extends ExtendedCommonClientOptions {
apiVersion?: string;
}