Merge pull request #8390 from oizie/redux-immutable

Redux immutable - New Type Definition and tests
This commit is contained in:
Masahiro Wakame
2016-03-12 00:37:34 +09:00
2 changed files with 14 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
/// <reference path="redux-immutable.d.ts" />
import { combineReducers } from 'redux-immutable';
combineReducers({
});
+8
View File
@@ -0,0 +1,8 @@
// Type definitions for redux-immutable v3.0.5
// Project: https://github.com/gajus/redux-immutable
// Definitions by: Pedro Pereira <https://github.com/oizie>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "redux-immutable" {
export function combineReducers(reducers : Object): Object;
}