(self: Layer<ROut, E, RIn>)
| 2205 | * @since 2.0.0 |
| 2206 | */ |
| 2207 | export const launch = <RIn, E, ROut>(self: Layer<ROut, E, RIn>): Effect<never, E, RIn> => |
| 2208 | internalEffect.scoped(internalEffect.andThen(build(self), internalEffect.never)) |
| 2209 | |
| 2210 | /** |
| 2211 | * A utility type for creating partial mocks of services in testing. |