2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-20 20:00:40 +03:00

feat(types): export AxiosHeaderValue type. (#5525)

This commit is contained in:
Arthur Fiorette
2023-04-27 18:37:10 -03:00
committed by GitHub
parent 2701911260
commit 726f1c8e00
2 changed files with 19 additions and 19 deletions
Vendored
+1 -1
View File
@@ -1,5 +1,5 @@
// TypeScript Version: 4.7
type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null;
export type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null;
interface RawAxiosHeaders {
[key: string]: AxiosHeaderValue;