From 199f1870bbe1265ed4fcd2d358c663ccdd7708c1 Mon Sep 17 00:00:00 2001
From: Shen Chang <s2696922797c@outlook.com>
Date: Sat, 17 Aug 2019 14:31:14 +0800
Subject: [PATCH] fix: Fix bindLifecycle.tsx TSLint Error

---
 src/utils/bindLifecycle.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/utils/bindLifecycle.tsx b/src/utils/bindLifecycle.tsx
index aeb0324..7dcad7a 100644
--- a/src/utils/bindLifecycle.tsx
+++ b/src/utils/bindLifecycle.tsx
@@ -138,5 +138,5 @@ export default function bindLifecycle<P = any>(Component: React.ComponentClass<P
   return hoistNonReactStatics(
     BindLifecycle,
     Component,
-  );
+  ) as any;
 }