Skip to content

Commit

Permalink
Fixed AxiosError status code type; (#4717)
Browse files Browse the repository at this point in the history
Co-authored-by: Jay <jasonsaayman@gmail.com>
  • Loading branch information
DigitalBrainJS and jasonsaayman committed May 16, 2022
1 parent 9be61dc commit 65b9295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -182,7 +182,7 @@ export class AxiosError<T = unknown, D = any> extends Error {
request?: any;
response?: AxiosResponse<T, D>;
isAxiosError: boolean;
status?: string;
status?: number;
toJSON: () => object;
static readonly ERR_FR_TOO_MANY_REDIRECTS = "ERR_FR_TOO_MANY_REDIRECTS";
static readonly ERR_BAD_OPTION_VALUE = "ERR_BAD_OPTION_VALUE";
Expand Down

0 comments on commit 65b9295

Please sign in to comment.