(onrejected?: ((reason: any) => unknown) | undefined | null)
| 531 | } |
| 532 | |
| 533 | catch(onrejected?: ((reason: any) => unknown) | undefined | null): Promise<unknown> { |
| 534 | return pullPromise(this).catch(...arguments); |
| 535 | } |
| 536 | |
| 537 | finally(onfinally?: (() => void) | undefined | null): Promise<unknown> { |
| 538 | return pullPromise(this).finally(...arguments); |
no test coverage detected