( self: HttpClient.With<E, R> )
| 1431 | /** |
| 1432 | * Performs an additional effect after an unsuccessful request. |
| 1433 | * |
| 1434 | * @category sequencing |
| 1435 | * @since 4.0.0 |
| 1436 | */ |
| 1437 | export const tapError: { |
| 1438 | <_, E, E2, R2>( |
| 1439 | f: (e: NoInfer<E>) => Effect.Effect<_, E2, R2> |
| 1440 | ): <R>(self: HttpClient.With<E, R>) => HttpClient.With<E | E2, R | R2> |
| 1441 | <E, R, _, E2, R2>( |
| 1442 | self: HttpClient.With<E, R>, |
| 1443 | f: (e: NoInfer<E>) => Effect.Effect<_, E2, R2> |
| 1444 | ): HttpClient.With<E | E2, R | R2> |
| 1445 | } = dual( |
| 1446 | 2, |
| 1447 | <E, R, _, E2, R2>( |
| 1448 | self: HttpClient.With<E, R>, |
| 1449 | f: (e: NoInfer<E>) => Effect.Effect<_, E2, R2> |
nothing calls this directly
no test coverage detected
searching dependent graphs…