The string literal tag identifying the dependency
The type of the value being provided
Optional[Readonly[Optional[ReadonlypipeComposes this effect with one or more Pipeable operations into a single sequential effect.
One or more pipeable operations to apply after this effect
A new Effect representing the composed pipeline
This is a fluent convenience method equivalent to calling the standalone pipe function with this effect as the first argument. It accepts transform functions, error handlers, and dependency providers.
An Effect that supplies a concrete value for a Dependency.
Remarks
Provideis produced by Dependency.provide and is used as a Pipeable operation inside pipe or Effect.pipe. When the pipeline executes, theProvideeffect writes the supplied value into the internal dependency context so that subsequentyield*calls on the corresponding Dependency resolve to that value.You should not instantiate
Providedirectly — use Dependency.provide instead.Example