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