Merge pull request #5796 from pdeva/patch-6

Added compose() function declaration
This commit is contained in:
Masahiro Wakame
2015-09-20 18:41:27 +09:00
+2 -1
View File
@@ -44,8 +44,9 @@ declare module Redux {
function bindActionCreators<T>(actionCreators: T, dispatch: Dispatch): T;
function combineReducers(reducers: any): Reducer;
function applyMiddleware(...middleware: Middleware[]): Function;
function compose<T extends Function>(...functions: Function[]): T;
}
declare module "redux" {
export = Redux;
}
}