mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-07 04:50:54 +08:00
10 lines
381 B
TypeScript
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>;
|
|
|