This commit is contained in:
Marcos Nocetti 2026-04-09 22:41:53 -03:00 committed by GitHub
commit 9f668fb2a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ type BrowserProgressEvent = any;
declare class AxiosHeaders {
constructor(headers?: RawAxiosHeaders | AxiosHeaders | string);
[key: string]: any;
[key: string]: axios.AxiosHeaderValue | ((...args: any[]) => any);
set(
headerName?: string,

2
index.d.ts vendored
View File

@ -23,7 +23,7 @@ type AxiosHeaderParser = (this: AxiosHeaders, value: AxiosHeaderValue, header: s
export class AxiosHeaders {
constructor(headers?: RawAxiosHeaders | AxiosHeaders | string);
[key: string]: any;
[key: string]: AxiosHeaderValue | ((...args: any[]) => any);
set(
headerName?: string,