Preparing search index...

    Overall progress tracking for the import workflow

    interface ImportProgress {
        phase:
            | "selection"
            | "importing"
            | "complete"
            | "discovery"
            | "validation";
        current: number;
        total: number;
        message?: string;
    }
    Index

    Properties

    phase: "selection" | "importing" | "complete" | "discovery" | "validation"

    Current phase of the import process

    current: number

    Current item index being processed

    total: number

    Total number of items to process

    message?: string

    Optional status message for display