(effect: Effect<X, E, R>)
| 1104 | * @since 2.0.0 |
| 1105 | */ |
| 1106 | export const effectDiscard = <X, E, R>(effect: Effect<X, E, R>): Layer<never, E, Exclude<R, Scope.Scope>> => |
| 1107 | effectContext(internalEffect.as(effect, Context.empty())) |
| 1108 | |
| 1109 | /** |
| 1110 | * Constructs a layer lazily using the specified factory. |
nothing calls this directly
no test coverage detected