UNPKG

redux-smart-creators

Version:
4 lines (3 loc) 238 B
import { ReducerCreator } from '../types/reducer'; import { UnknownAction } from '../types/common'; export declare function setupReducer<State, Action extends UnknownAction<string>>(initialState: State): ReducerCreator<State, Action>;