Skip to content

@lands.io/mod-sdk / MapThumbnailsMessage

Interface: MapThumbnailsMessage

Map thumbnails message received from the parent app.

Table of contents

Properties

Properties

displayNames

displayNames: Record\<string, string>


thumbnails

thumbnails: Record\<string, string>


type

type: "mapThumbnails"


Source Code

View full implementation
/**
 * Map thumbnails message received from the parent app.
 */
export interface MapThumbnailsMessage {
  type: 'mapThumbnails';
  thumbnails: Record<string, string>;
  displayNames: Record<string, string>;
}