Skip to content

@lands.io/mod-sdk / FontsReadyMessage

Interface: FontsReadyMessage

Fonts ready message sent from the lobby to the parent app. Signals that fonts have been fully loaded and are ready to use.

Table of contents

Properties

Properties

type

type: "fontsReady"


Source Code

View full implementation
/**
 * Fonts ready message sent from the lobby to the parent app.
 * Signals that fonts have been fully loaded and are ready to use.
 */
export interface FontsReadyMessage {
  type: 'fontsReady';
}