JSPM

  • Created
  • Published
  • Downloads 21283
  • Score
    100M100P100Q148797F
  • License MIT

TypeScript definitions for redux-immutable

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

    // Type definitions for redux-immutable v3.0.33
    // Project: https://github.com/gajus/redux-immutable
    // Definitions by: Sebastian Sebald <https://github.com/sebald>
    //                 Gavin Gregory <https://github.com/gavingregory>
    // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
    
    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.