( self: Exit.Exit<A, E> )
| 376 | ) |
| 377 | |
| 378 | const writeExit = <A, E>( |
| 379 | self: Exit.Exit<A, E> |
| 380 | ): Channel.Channel<never, unknown, E> => self._tag === "Success" ? Channel.void : Channel.failCause(self.cause) |
| 381 | |
| 382 | function convertError(cause: MP.MultipartError): MultipartError { |
| 383 | switch (cause._tag) { |
no test coverage detected
searching dependent graphs…