Skip to content
Permalink
9bfb9ba527
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
12 lines (12 sloc) 540 Bytes
import { HttpClient } from "./httpClient";
import { HttpHeaders } from "./httpHeaders";
import { WebResourceLike } from "./webResource";
import { HttpOperationResponse } from "./httpOperationResponse";
/**
* A HttpClient implementation that uses XMLHttpRequest to send HTTP requests.
*/
export declare class XhrHttpClient implements HttpClient {
sendRequest(request: WebResourceLike): Promise<HttpOperationResponse>;
}
export declare function parseHeaders(xhr: XMLHttpRequest): HttpHeaders;
//# sourceMappingURL=xhrHttpClient.d.ts.map