Skip to content

@lands.io/mod-sdk / LobbyReadyMessage

Interface: LobbyReadyMessage

Lobby ready message sent from the lobby to the parent app. Signals that the iframe has installed its message listeners and is ready to receive init.

Table of contents

Properties

Properties

type

type: "lobbyReady"


Source Code

View full implementation
/**
 * Lobby ready message sent from the lobby to the parent app.
 * Signals that the iframe has installed its message listeners and is ready to receive init.
 */
export interface LobbyReadyMessage {
  type: 'lobbyReady';
}