(
onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null
)
| 580 | } |
| 581 | |
| 582 | override catch<TResult = never>( |
| 583 | onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null |
| 584 | ): Promise<T | TResult> { |
| 585 | return this.parse().catch(onrejected); |
| 586 | } |
| 587 | |
| 588 | override finally(onfinally?: (() => void) | undefined | null): Promise<T> { |
| 589 | return this.parse().finally(onfinally); |
no test coverage detected