browser_xhr.d.ts 229 Bytes
/**
 * A backend for http that uses the `XMLHttpRequest` browser API.
 *
 * Take care not to evaluate this in non-browser contexts.
 *
 * @experimental
 */
export declare class BrowserXhr {
    constructor();
    build(): any;
}