( onrejected?: | ((reason: any) => TResult | PromiseLike<TResult>) | null | undefined, )
| 171 | } |
| 172 | |
| 173 | catch<TResult = never>( |
| 174 | onrejected?: |
| 175 | | ((reason: any) => TResult | PromiseLike<TResult>) |
| 176 | | null |
| 177 | | undefined, |
| 178 | ): Promise<void | TResult> { |
| 179 | return this.then(undefined, onrejected); |
| 180 | } |
| 181 | |
| 182 | finally(onfinally?: (() => void) | null | undefined): Promise<void> { |
| 183 | return this.then( |
no test coverage detected