UNPKG
oo-redux-utils
Version:
latest (1.25.0)
1.25.0
1.24.1
1.24.0
1.23.13
1.23.12
1.23.11
1.23.10
1.23.9
1.23.8
1.23.7
1.23.6
1.23.5
1.23.4
1.23.3
1.23.2
1.23.1
1.23.0
1.22.0
1.21.2
1.21.1
1.21.0
1.20.0
1.19.0
1.18.0
1.17.0
1.16.0
1.15.1
1.15.0
1.14.0
1.13.0
1.12.0
1.11.5
1.11.4
1.11.3
1.11.2
1.11.1
1.11.0
1.10.1
1.10.0
1.9.1
1.9.0
1.8.11
1.8.10
1.8.9
1.8.8
1.8.7
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.7.0
1.6.0
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.1
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
Utility functions for Object-oriented Redux
github.com/pksilen/oo-redux-utils
pksilen/oo-redux-utils
oo-redux-utils
/
lib
/
Dispatch.js.flow
15 lines
(7 loc)
•
215 B
Flow
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// @flow
import
*
as
React
from
'react'
;
import
AbstractAction
from
'./AbstractAction'
;
export
type
ActionObject
= $Exact<{
type
:
AbstractAction
<
any
,
any
> }>;
export
type
Dispatch
=
(
ActionObject
) =>
void
;