Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0e43f89

Browse files
committedNov 26, 2021
Update ServerConfig's payload to SetupPayload type
1 parent 490c06e commit 0e43f89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/rsocket-core/src/RSocketServer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export interface TransportServer {
5656
export type ServerConfig<D, M> = {|
5757
getRequestHandler: (
5858
socket: ReactiveSocket<D, M>,
59-
payload: Payload<D, M>,
59+
payload: SetupPayload<D, M>,
6060
) => PartialResponder<D, M>,
6161
serializers?: PayloadSerializers<D, M>,
6262
transport: TransportServer,

0 commit comments

Comments
 (0)
Please sign in to comment.