type Reducer<I,O>
A Reducer
is a stand-alone calculation that takes input values of type I, and, when requested, produces an output value of type O.
Companion namespace: Reducer
Definition
export type Reducer<I, O = I> =
Reducer.Impl
<I, O, unknown>;