Files
DefinitelyTyped/types/redux-recycle/index.d.ts
2017-03-24 14:27:52 -07:00

10 lines
381 B
TypeScript

// Type definitions for redux-recycle 1.2
// Project: https://github.com/omnidan/redux-recycle
// Definitions by: Karol Janyst <https://github.com/LKay>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import { Reducer } from "redux";
export default function recycleState<A> (reducer: Reducer<A>, actions: string[], initialState?: A | Reducer<A>): Reducer<A>;