A call that expects to be chained after a previous call, because it needs its value.
(nextCall: (value: TCurrent) => Promise<TNext>)
| 650 | |
| 651 | /** A call that expects to be chained after a previous call, because it needs its value. */ |
| 652 | private continueChain<TNext>(nextCall: (value: TCurrent) => Promise<TNext>) { |
| 653 | return this._chain(true, nextCall) |
| 654 | } |
| 655 | |
| 656 | /** Start a chain. If continuing, it overwrites the current chained value. */ |
| 657 | private startChain<TNext>(nextCall: () => TNext | Promise<TNext>) { |
no test coverage detected