(
onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null,
)
| 590 | } |
| 591 | |
| 592 | catch<TResult = never>( |
| 593 | onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null, |
| 594 | ): Promise<T | TResult> { |
| 595 | return this._promise.catch.call(this._promise, onrejected); |
| 596 | } |
| 597 | |
| 598 | then<TResult1 = T, TResult2 = never>( |
| 599 | onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, |
no outgoing calls
no test coverage detected