re-reduced
Advanced tools
Comparing version 0.6.1 to 0.7.1
@@ -5,5 +5,7 @@ import { ActionCreator } from "./core"; | ||
declare type StateToProps<TState, TProps> = (state: TState) => TProps; | ||
export declare function connectWithActions<TActions extends Tree<ActionCreator<any>>, TState, TProps>(actions: TActions, mapStateToProps?: StateToProps<TState, TProps>): import("react-redux").InferableComponentEnhancerWithProps<TProps & { | ||
actions: Tree<ActionCreator<any>>; | ||
export declare function connectWithActions<TProps extends { | ||
actions: TActions; | ||
}, TActions extends Tree<ActionCreator>, TState = {}>(actions: TActions, mapStateToProps?: StateToProps<TState, TProps>): import("react-redux").InferableComponentEnhancerWithProps<TProps & { | ||
actions: Tree<ActionCreator<void>>; | ||
}, {}>; | ||
export {}; |
{ | ||
"name": "re-reduced", | ||
"version": "0.6.1", | ||
"version": "0.7.1", | ||
"description": "A utility toolbelt that reduces boilerplate from your react/redux app", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
12379
206