From f1091341136f458466fec852d2b18eb3374728d4 Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 19 Oct 2018 15:09:02 -0700 Subject: [PATCH] wepy-redux: Fix --strictFunctionTypes error (#29892) --- types/wepy-redux/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/wepy-redux/index.d.ts b/types/wepy-redux/index.d.ts index be516d18eb..f7e1c8262f 100644 --- a/types/wepy-redux/index.d.ts +++ b/types/wepy-redux/index.d.ts @@ -19,6 +19,6 @@ export function connect( mapDispatchToProps: MapDispatchToProps ): ((original: T) => T); -export function setStore(store: Store): void; +export function setStore(store: Store): void; export function getStore(): Store;