type alias Yielded
thefrontside/effectiontype Yielded = T extends Operation<infer TYield> ? TYield : never
Unwrap the type of an Operation
.
Analogous to the built in Awaited
type.
Yielded<Operation<T>> === T
Type Parameters
T extends https://effection-www-7a79x8qmc0zv.deno.dev/api/v4/Operation<unknown>