Mappedin JS - v6.14.0
    Preparing search index...

    Type Alias TDirectionInstructionAction

    Represents an action within a direction instruction.

    type TDirectionInstructionAction = {
        bearing?: TBearingType;
        connection?: Connection;
        connectionType?: TConnectionType;
        direction?: "up" | "down" | "none";
        fromFloor?: Floor;
        toFloor?: Floor;
        type: TActionType;
    }
    Index

    Properties

    bearing?: TBearingType

    Bearing direction for this action (e.g., 'Straight', 'Right', 'Left').

    connection?: Connection

    Connection object related to the action. This represents the specific connection (e.g., elevator, stairs) involved in the current direction step.

    connectionType?: TConnectionType

    The type of the connection (e.g., 'elevator', 'escalator').

    in favor of connection.type

    direction?: "up" | "down" | "none"

    The direction of the connection (e.g., 'up', 'down').

    fromFloor?: Floor

    The Floor from which this action starts.

    toFloor?: Floor

    The target Floor for this action.

    Type of action required at this step (e.g., 'Departure', 'Arrival', 'Turn').