Fix doc of pack.ts

This commit is contained in:
Jerko Steiner 2019-09-05 10:21:31 +07:00
parent 5cf54d0be9
commit 2a4d196906

View File

@ -9,11 +9,11 @@ import { TStateSelector } from './TStateSelector'
* For example: * For example:
* *
* *
* function configure( * function configure<State>(
* actions: Actions, * actions: Actions,
* getLocalState: (state: State) => LocalState, * getLocalState: (state: State) => LocalState,
* ) { * ) {
* pack( * return pack(
* getLocalState, * getLocalState,
* function mapStateToProps(localState: LocalState) { * function mapStateToProps(localState: LocalState) {
* return localState, * return localState,