/** @packageDocumentation * @module OrbitGT */ import { ABuffer } from "../buffer/ABuffer"; import { StringMap } from "../collection/StringMap"; import { Downloader } from "./Downloader"; /** * Class DownloaderXhr implements a downloader using an XmlHttpRequest (XHR). */ /** @internal */ export declare class DownloaderXhr extends Downloader { constructor(); private static readResponseHeaders; private download0; downloadBytes(method: string, requestURL: string, requestHeaders: StringMap, postText: string, postData: ABuffer, responseHeaders: StringMap): Promise; downloadText(method: string, requestURL: string, requestHeaders: StringMap, postText: string, postData: ABuffer, responseHeaders: StringMap): Promise; downloadText2(requestURL: string): Promise; } //# sourceMappingURL=DownloaderXhr.d.ts.map