ms-rest-js/lib/httpClient.ts

11 строки
471 B
TypeScript

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
import { RequestPolicy } from "./requestPolicy";
/**
* A function that can send HttpRequests and receive promised HttpResponses.
* @param request The HTTP request to send.
* @returns A Promise that resolves to the HttpResponse from the targeted server.
*/
export interface HttpClient extends RequestPolicy {
}