Package: effect
Module: Schedule
Transforms a schedule to pass through its inputs as outputs.
Details
This function modifies an existing schedule so that it returns its input values instead of its original output values. The schedule’s timing remains unchanged, but its outputs are replaced with whatever inputs it receives.
Signature
declare const passthrough: <Out, In, R>(self: Schedule<Out, In, R>) => Schedule<In, In, R>
Since v2.0.0