UNPKG
@fthebaud/reducer-logger
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
Simple logger for reducer functions
github.com/fthebaud/reducer-logger
fthebaud/reducer-logger
@fthebaud/reducer-logger
/
src
/
types
/
index.ts
16 lines
(12 loc)
•
221 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
type
Action
= {
type
:
string
; [
key
:
string
]:
unknown
; };
interface
Reducer
<S, A> { (
state
: S,
action
: A): S; }
export
type
Options
= {
disabled
?:
boolean
;
displayName
?:
string
; };
export
{
Reducer
,
Action
};