Skip to content

Commit

Permalink
fix(axios): Version 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mfilip authored and cblanc committed Nov 27, 2023
1 parent 7a30799 commit 6b56dba
Show file tree
Hide file tree
Showing 3 changed files with 1,466 additions and 15,223 deletions.
10 changes: 5 additions & 5 deletions lib/agent.ts
@@ -1,4 +1,4 @@
import Axios from "axios";
import Axios, { AxiosResponseHeaders, RawAxiosResponseHeaders } from "axios";
import { AxiosResponse, AxiosInstance } from "axios";
import {
Agent as IAgent,
Expand All @@ -15,15 +15,15 @@ const {
} = errors;

// @hidden
interface GotHeaders {
[key: string]: string | string[] | undefined;
}
//interface GotHeaders {
// [key: string]: string | string[] | undefined;
//}

/**
* @hidden
*/
interface ToHeader {
(gotHeaders: GotHeaders): Record<string, string>;
(gotHeaders: RawAxiosResponseHeaders | AxiosResponseHeaders): Record<string, string>;
}

/**
Expand Down

0 comments on commit 6b56dba

Please sign in to comment.