From 2e0a76511a74591b461af58dc063e3cb5bfe3ccd Mon Sep 17 00:00:00 2001 From: Louis Larry Date: Mon, 12 Oct 2015 09:08:42 +0700 Subject: [PATCH] Update axios.d.ts, add Response.statusText --- axios.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/axios.d.ts b/axios.d.ts index 6dec326..6ceaeaa 100644 --- a/axios.d.ts +++ b/axios.d.ts @@ -21,6 +21,7 @@ declare module axios { interface Response { data?: any; status?: number; + statusText?: string; headers?: any; config?: any; }