JME - Application Documentation
    Preparing search index...

    Type Alias TutorialStep

    Configuration for a single tutorial step.

    type TutorialStep = {
        action: string;
        autoAdvance: boolean;
        description: string;
        id: string;
        nextLabel?: string;
        position: TooltipPosition;
        target: string;
        title: string;
    }
    Index

    Properties

    action: string

    What the user must do: "click" a button, "drag" on the canvas, "right-click", etc.

    autoAdvance: boolean

    If true, advance automatically when the expected action is detected

    description: string
    id: string
    nextLabel?: string

    Custom label for the Next button (default: "Next →")

    position: TooltipPosition

    Tooltip position relative to the target

    target: string

    CSS selector for the element to highlight / point at

    title: string