Added new type definition and test for redux-immutable

This commit is contained in:
Pedro.Pereira
2016-02-27 18:48:24 +00:00
parent 163a427719
commit 51be97c108
2 changed files with 9 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { combineReducers } from 'redux-immutable';
import { routerReducer } from 'react-router-redux';
combineReducers({
routing: routerReducer
});
+3
View File
@@ -0,0 +1,3 @@
declare module "redux-immutable" {
export function combineReducers(reducers : Object): Object;
}