UNPKG
template-ivan
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
scaffold template
github.com/IvanPeng2015/frontendtraining
IvanPeng2015/frontendtraining
template-ivan
/
react
/
src
/
actions
/
thunk.js
7 lines
(4 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
// @flow
import
type
{
State
}
from
'../reducers/index'
// eslint-disable-next-line no-use-before-define
export
type
Thunk
=
(
dispatch
:
Dispatch
,
getState
: () =>
State
) =>
any
;