Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@types/redux-immutable) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Installation
npm install --save @types/redux-immutable
Summary
This package contains type definitions for redux-immutable (https://github.com/gajus/redux-immutable).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-immutable/v3.
index.d.ts
import { Collection } from "immutable";
import * as Redux from "redux";
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>;
Additional Details
Credits
These definitions were written by Sebastian Sebald, and Gavin Gregory.