Skip to content

@lands.io/mod-sdk / LobbyRpcMessage

Interface: LobbyRpcMessage

Table of contents

Properties

Properties

id

id: string


method

method: LobbyRpcMethod


params

Optional params: unknown


type

type: "rpc"


Source Code

View full implementation
export interface LobbyRpcMessage {
  type: 'rpc';
  id: string;
  method: LobbyRpcMethod;
  params?: unknown;
}