Make connect return correct type

This commit is contained in:
tkqubo
2015-10-19 23:19:04 +09:00
parent af5b8275d1
commit ddbcdd0d55
2 changed files with 19 additions and 8 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ declare module "react-redux" {
import { Store, Dispatch, ActionCreator } from 'redux';
export interface ClassDecorator {
<TFunction extends Function>(target: TFunction): TFunction|void;
<TFunction extends Function>(target: TFunction): TFunction;
}
/**