Skip to content

Commit

Permalink
fix: added AxiosHeaders in AxiosHeaderValue (#5103)
Browse files Browse the repository at this point in the history
fixes issue #5034

Co-authored-by: Jay <jasonsaayman@gmail.com>
  • Loading branch information
salmannotkhan and jasonsaayman committed Oct 13, 2022
1 parent 717f476 commit ed19414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
@@ -1,5 +1,5 @@
// TypeScript Version: 4.1
type AxiosHeaderValue = string | string[] | number | boolean | null;
type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null;
type RawAxiosHeaders = Record<string, AxiosHeaderValue>;

type MethodsHeaders = {
Expand Down

0 comments on commit ed19414

Please sign in to comment.