跨平台 HTTP 请求适配器。

interface RequestAdapter {
    request<TData>(config: RequestConfig): Promise<RequestResponse<TData>>;
}

Methods

Methods