(
onrejected?: ((reason?: any) => TResult | PromiseLike<TResult>) | null,
)
| 51 | return this._promise.then(onfulfilled, onrejected); |
| 52 | } |
| 53 | catch<TResult = never>( |
| 54 | onrejected?: ((reason?: any) => TResult | PromiseLike<TResult>) | null, |
| 55 | ): Promise<T | TResult> { |
| 56 | return this._promise.catch(onrejected); |
| 57 | } |
| 58 | finally(onfinally?: (() => void) | null): Promise<T> { |
| 59 | return this._promise.finally(onfinally); |
| 60 | } |
no outgoing calls
no test coverage detected