UNPKG

@stackend/api

Version:

JS bindings to api.stackend.com

6 lines 232 B
declare type Reducer<S, A> = (S: any, A: any) => S; export default function createReducer<S, A>(initialState: S, handlers: { [key: string]: Reducer<S, A>; }): Reducer<S, A>; export {}; //# sourceMappingURL=createReducer.d.ts.map