2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-02 16:04:10 +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 {
data?: any;
status?: number;
statusText?: string;
headers?: any;
config?: any;
}