(self: Layer.Layer<ROut, E, RIn>)
| 847 | |
| 848 | /** @internal */ |
| 849 | export const passthrough = <RIn, E, ROut>(self: Layer.Layer<ROut, E, RIn>): Layer.Layer<RIn | ROut, E, RIn> => |
| 850 | merge(context<RIn>(), self) |
| 851 | |
| 852 | /** @internal */ |
| 853 | export const project = dual< |