2022-03-15 14:48:18 +01:00
|
|
|
// Type definitions for redux-immutable v4.0.0
|
|
|
|
// Project: https://github.com/gajus/redux-immutable
|
|
|
|
// Definitions by: Sebastian Sebald <https://github.com/sebald>
|
|
|
|
// Gavin Gregory <https://github.com/gavingregory>
|
|
|
|
// Kanitkorn Sujautra <https://github.com/lukyth>
|
|
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
// TypeScript Version: 2.3
|
|
|
|
|
|
|
|
declare module 'redux-immutable' {
|
2022-03-19 18:54:10 +01:00
|
|
|
import { Collection, Record } from 'immutable';
|
2022-03-18 22:09:36 +01:00
|
|
|
import { ReducersMapObject, Reducer, Action } from 'redux';
|
2022-03-15 14:48:18 +01:00
|
|
|
|
|
|
|
export function combineReducers<S, A extends Action, T>(reducers: ReducersMapObject<S, A>, getDefaultState?: () => Collection.Keyed<T, S>): Reducer<S, A>;
|
|
|
|
export function combineReducers<S, A extends Action>(reducers: ReducersMapObject<S, A>, getDefaultState?: () => Collection.Indexed<S>): Reducer<S, A>;
|
|
|
|
export function combineReducers<S>(reducers: ReducersMapObject<S, any>, getDefaultState?: () => Collection.Indexed<S>): Reducer<S>;
|
2022-07-06 22:54:30 +02:00
|
|
|
export function combineReducers<S extends object, T extends object>(reducers: ReducersMapObject<S, any>, getDefaultState?: Record.Factory<T>): Reducer<ReturnType<Record.Factory<S>>>;
|
2022-03-15 14:48:18 +01:00
|
|
|
}
|