mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-03 23:42:50 +00:00
13 lines
725 B
TypeScript
13 lines
725 B
TypeScript
// Type definitions for redux-immutable v3.0.33
|
|
// Project: https://github.com/gajus/redux-immutable
|
|
// Definitions by: Pedro Pereira <https://github.com/oizie>
|
|
// Sebastian Sebald <https://github.com/sebald>
|
|
// Gavin Gregory <https://github.com/gavingregory>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import * as Redux from 'redux';
|
|
import { Collection } from 'immutable';
|
|
|
|
export declare function combineReducers<S, T>(reducers: Redux.ReducersMapObject, getDefaultState?: () => Collection.Keyed<T, S>): Redux.Reducer<S>;
|
|
export declare function combineReducers<S>(reducers: Redux.ReducersMapObject, getDefaultState?: () => Collection.Indexed<S>): Redux.Reducer<S>;
|