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

Merge pull request #126 from louislarry/patch-1

Update axios.d.ts, add Response.statusText
This commit is contained in:
Matt Zabriskie
2015-10-11 20:35:34 -06:00
Vendored
+1
View File
@@ -21,6 +21,7 @@ declare module axios {
interface Response { interface Response {
data?: any; data?: any;
status?: number; status?: number;
statusText?: string;
headers?: any; headers?: any;
config?: any; config?: any;
} }