@lands.io/mod-sdk / LobbyRpcMessage Interface: LobbyRpcMessage¶ Table of contents¶ Properties¶ id method params type 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; }