fetchHttpClient -> axiosHttpClient

This commit is contained in:
Rikki Gibson 2018-05-17 17:00:50 -07:00
Родитель 7a7d8fc0e4
Коммит e2f3d2828f
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -20,9 +20,9 @@ if (isNode) {
}
/**
* A HttpClient implementation that uses fetch to send HTTP requests.
* A HttpClient implementation that uses axios to send HTTP requests.
*/
export class FetchHttpClient implements HttpClient {
export class AxiosHttpClient implements HttpClient {
private readonly cookieJar = isNode ? new tough.CookieJar() : null;
public async sendRequest(httpRequest: WebResource): Promise<HttpOperationResponse> {