Skip to content

@lands.io/mod-sdk / ModIntent

Interface: ModIntent

Custom mod intent - mods register handlers for these

Hierarchy

ModIntent

Table of contents

Properties

Properties

clientID

clientID: string

Inherited from

BaseIntent.clientID


intentName

intentName: string


modId

modId: string


payload

payload: unknown


playerID

playerID: string

Inherited from

BaseIntent.playerID


type

type: "mod"

Overrides

BaseIntent.type


Source Code

View full implementation
/** Custom mod intent - mods register handlers for these */
export interface ModIntent extends BaseIntent {
  type: 'mod';
  modId: string;
  intentName: string;
  payload: unknown;
}