Skip to content

Commit

Permalink
fix error types for Mailbox stream
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed Feb 5, 2025
1 parent 8c760f2 commit ade631e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rpc/src/RpcGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export type HandlersFrom<Rpc extends Rpc.Any> = {
_E | Rpc.Error<Current>,
any
>
| Effect.Effect<ReadonlyMailbox<_A, _E>, Rpc.Error<Current>, any> :
| Effect.Effect<ReadonlyMailbox<_A, _E | Rpc.Error<Current>>, _E | Rpc.Error<Current>, any> :
Effect.Effect<
Rpc.Success<Current>,
Rpc.Error<Current>,
Expand Down

0 comments on commit ade631e

Please sign in to comment.