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 |
|
4 | import { RequestPolicy } from "./policies/requestPolicy";
|
5 |
|
6 | /**
|
7 | * An interface that can send HttpRequests and receive promised HttpResponses.
|
8 | */
|
9 | export interface HttpClient extends RequestPolicy {}
|