Type Alias TFloorChangePayload

TFloorChangePayload: {
    floor: Floor;
    previousFloor: Floor;
    reason?: TFloorChangeReason;
}

Describes the payload delivered with floor change events.

This type provides context when a floor change occurs within the map, such as user-initiated level switches, programmatic navigation, or automatic changes. It specifies both the current and previous floors for the transition, as well as an optional reason.

Type declaration