wepy-redux: Fix --strictFunctionTypes error (#29892)

This commit is contained in:
Andy
2018-10-19 15:09:02 -07:00
committed by Sheetal Nandi
parent 1e07d02f5d
commit f109134113
+1 -1
View File
@@ -19,6 +19,6 @@ export function connect(
mapDispatchToProps: MapDispatchToProps
): (<T extends wepy.Component>(original: T) => T);
export function setStore(store: Store): void;
export function setStore(store: Store<any, any>): void;
export function getStore(): Store;