2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-11 18:02:32 +03:00

fix: added AxiosHeaders in AxiosHeaderValue (#5103)

fixes issue #5034

Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
Salman Shaikh
2022-10-14 01:30:05 +05:30
committed by GitHub
parent 717f476b0f
commit ed19414b33
Vendored
+1 -1
View File
@@ -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 = {