frontend
    Preparing search index...

    Props for the TutorialTooltip component.

    interface TutorialTooltipProps {
        advanceOn: TutorialAdvanceOn;
        message: string;
        onNext: () => void;
        onSkip: () => void;
        stepIndex: number;
        totalSteps: number;
    }
    Index

    Properties

    How to advance: 'next' shows a next button, 'click' hides it.

    message: string

    The message to display in the tooltip.

    onNext: () => void

    Called when advancing to the next step.

    onSkip: () => void

    Called when the tutorial is skipped.

    stepIndex: number

    Zero-based index of the current step.

    totalSteps: number

    Total number of steps.