Merge pull request #14220 from sebald/patch-1

redux-immutable: improve typings
This commit is contained in:
Daniel Rosenwasser
2017-01-24 13:39:34 -08:00
committed by GitHub

View File

@@ -1,8 +1,8 @@
// Type definitions for redux-immutable v3.0.5
// Type definitions for redux-immutable v3.0.10
// Project: https://github.com/gajus/redux-immutable
// Definitions by: Pedro Pereira <https://github.com/oizie>
// Definitions by: Pedro Pereira <https://github.com/oizie>, Sebastian Sebald <https://github.com/sebald/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import * as Redux from 'redux';
export declare function combineReducers(reducers: Object): Redux.Reducer<any>;
export declare function combineReducers<S>(reducers: Redux.ReducersMapObject): Redux.Reducer<S>;