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-jctyb5nxhzq0.deno.dev/api/v3/Yielded/Operation<unknown>