UNPKG
redux-vertical
Version:
latest (2.1.0)
2.1.0
2.0.1
2.0.0
1.1.2
1.1.1
1.1.0
1.0.0
0.0.1
Build redux vertically
github.com/BerkeleyTrue/redux-vertical
BerkeleyTrue/redux-vertical
redux-vertical
/
lib
/
middlewares
/
array.d.ts
6 lines
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
import
type
{
Action
,
Dispatch
}
from
'redux'
;
declare
function
arrayMiddleware<D
extends
Dispatch
=
Dispatch
>({ dispatch, }: {
dispatch
: D; }):
(
next
: D
) =>
(
action
:
Action
|
Action
[]
) =>
any
;
export
default
arrayMiddleware;
//# sourceMappingURL=array.d.ts.map