2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-21 13:24:11 +03:00

Updating Typescript typing for AxiosError to include request? param (#1015)

This commit is contained in:
Michael Marvick
2017-08-12 06:12:20 -05:00
committed by Rubén Norte
parent f1fb3de38f
commit 6508280bbf
Vendored
+1
View File
@@ -55,6 +55,7 @@ export interface AxiosResponse {
export interface AxiosError extends Error {
config: AxiosRequestConfig;
code?: string;
request?: any;
response?: AxiosResponse;
}