( first: Differ.Context.Patch<Input, Output>, second: Differ.Context.Patch<Output, Output2> )
| 51 | }) |
| 52 | |
| 53 | const makeAndThen = <Input, Output, Output2>( |
| 54 | first: Differ.Context.Patch<Input, Output>, |
| 55 | second: Differ.Context.Patch<Output, Output2> |
| 56 | ): Differ.Context.Patch<Input, Output2> => { |
| 57 | const o = Object.create(AndThenProto) |
| 58 | o.first = first |
| 59 | o.second = second |
| 60 | return o |
| 61 | } |
| 62 | |
| 63 | /** @internal */ |
| 64 | export interface AddService<in out Env, in out T, in out I> extends Differ.Context.Patch<Env, Env | I> { |
no test coverage detected
searching dependent graphs…