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

Update axios.d.ts, add Response.statusText

This commit is contained in:
Louis Larry
2015-10-12 09:08:42 +07:00
parent fcd2121c8b
commit 2e0a76511a
Vendored
+1
View File
@@ -21,6 +21,7 @@ declare module axios {
interface Response {
data?: any;
status?: number;
statusText?: string;
headers?: any;
config?: any;
}