httpClient.ts 358 B

12345678910
  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License. See License.txt in the project root for license information.
  3. import { RequestPolicy } from "./policies/requestPolicy";
  4. /**
  5. * An interface that can send HttpRequests and receive promised HttpResponses.
  6. */
  7. export interface HttpClient extends RequestPolicy {
  8. }