frontend
    Preparing search index...

    Props for the TutorialOverlay component.

    interface TutorialOverlayProps {
        onNext: () => void;
        onSkip: () => void;
        reducedMotion: boolean;
        step: TutorialStep;
        stepIndex: number;
        totalSteps: number;
    }
    Index

    Properties

    onNext: () => void

    Called to advance to the next step.

    onSkip: () => void

    Called to skip/dismiss the tutorial.

    reducedMotion: boolean

    Whether reduced motion is preferred.

    The current tutorial step definition.

    stepIndex: number

    Zero-based index of the current step.

    totalSteps: number

    Total number of steps.