(effect: Effect.Effect<A, E, R>)
| 155 | ); |
| 156 | |
| 157 | const mapStorageError = <A, E, R>(effect: Effect.Effect<A, E, R>) => |
| 158 | effect.pipe( |
| 159 | Effect.mapError((cause) => new StorageDomain.StorageError({ cause })), |
| 160 | ); |
| 161 | |
| 162 | const makeS3MultipartAccess = (s3: S3BucketAccess): MultipartAccess => ({ |
| 163 | create: ( |
no outgoing calls
no test coverage detected