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
/
types.d.ts
10 lines
•
297 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
{
Reducer
as
ReduxReducer
}
from
'redux'
;
export
declare
type
Action
= {
type
:
string
;
payload
?:
any
;
meta
?:
any
;
error
?:
boolean
; };
export
declare
type
Reducer
=
ReduxReducer
;
export
declare
type
Handlers
=
Record
<
string
,
Reducer
>;
//# sourceMappingURL=types.d.ts.map