Start a chain. If continuing, it overwrites the current chained value.
(nextCall: () => TNext | Promise<TNext>)
| 655 | |
| 656 | /** Start a chain. If continuing, it overwrites the current chained value. */ |
| 657 | private startChain<TNext>(nextCall: () => TNext | Promise<TNext>) { |
| 658 | return this._chain(false, nextCall) |
| 659 | } |
| 660 | |
| 661 | /** Either start or continue a chain. If continuing, it preserves the current chained value. */ |
| 662 | private startOrPreserveChain(nextCall: () => Promise<void>) { |
no test coverage detected