Loom Engine - v3.1.1
    Preparing search index...

    Interface TutorialFlowOptions

    interface TutorialFlowOptions {
        steps: TutorialStep[];
        persist?: TutorialPersistAdapter;
        onStepChanged?: (
            current: TutorialStep | null,
            prev: TutorialStep | null,
        ) => void;
        onFlowComplete?: () => void;
    }
    Index

    Properties

    steps: TutorialStep[]
    onStepChanged?: (
        current: TutorialStep | null,
        prev: TutorialStep | null,
    ) => void
    onFlowComplete?: () => void