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

    Interface TutorialStep

    interface TutorialStep {
        id: string;
        anchorId: string;
        message: string;
        condition?: () => boolean;
        onShow?: (step: TutorialStep) => void;
        onComplete?: (step: TutorialStep) => void;
        data?: Record<string, unknown>;
    }
    Index

    Properties

    id: string
    anchorId: string
    message: string
    condition?: () => boolean
    onShow?: (step: TutorialStep) => void
    onComplete?: (step: TutorialStep) => void
    data?: Record<string, unknown>