From 820fe6e41a96f05fb4781673ce07486f1b37515d Mon Sep 17 00:00:00 2001 From: Remco Haszing Date: Tue, 27 Oct 2020 13:36:32 +0100 Subject: [PATCH] Updating axios in types to be lower case (#2797) Co-authored-by: Xianming Zhong --- index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index c860d8662c..5ea0be90af 100644 --- a/index.d.ts +++ b/index.d.ts @@ -155,6 +155,6 @@ export interface AxiosStatic extends AxiosInstance { spread(callback: (...args: T[]) => R): (array: T[]) => R; } -declare const Axios: AxiosStatic; +declare const axios: AxiosStatic; -export default Axios; +export default axios;