UNPKG

@itwin/imodels-client-management

Version:

iModels API client wrapper for applications that manage iModels.

11 lines 588 B
import { AxiosResponse } from "axios"; import { HttpResponseHeaders } from "../types/RestClient"; import { Dictionary } from "../types/UtilityTypes"; /** Default implementation for {@link HttpResponseHeaders} interface, which adapts `axios` HTTP response headers to headers expected by the iModels Client. */ export declare class AxiosResponseHeadersAdapter implements HttpResponseHeaders { private _response; constructor(response: AxiosResponse); get(headerName: string): unknown; getAll(): Dictionary<unknown>; } //# sourceMappingURL=AxiosResponseHeadersAdapter.d.ts.map