(
state: State | undefined = {
a: 'a',
b: {
c: 'c',
d: 'd'
},
e: brandedString
},
action: Action
)
| 28 | } |
| 29 | |
| 30 | const reducer: Reducer<State> = ( |
| 31 | state: State | undefined = { |
| 32 | a: 'a', |
| 33 | b: { |
| 34 | c: 'c', |
| 35 | d: 'd' |
| 36 | }, |
| 37 | e: brandedString |
| 38 | }, |
| 39 | action: Action |
| 40 | ): State => { |
| 41 | return state |
| 42 | } |
| 43 | |
| 44 | const reducerWithAction: Reducer<State, DerivedAction> = ( |
| 45 | state: State | undefined = { |
no outgoing calls
no test coverage detected