/** * 提供 XMLHttpRequest 请求适配器。 * @packageDocumentation */ import type { IRequestAdapter } from '../../types'; import type { IXhrRequestResult } from './types'; export type { IXhrRequestResult }; /** * XMLHttpRequest 请求适配器。 */ export declare const xhrAdapter: IRequestAdapter;