Preparing search index...

    Progress update during recipe content parsing phase

    interface ParsingProgress {
        phase: "parsing" | "complete";
        current: number;
        total: number;
        currentRecipeTitle?: string;
        parsedRecipes: FullyDiscoveredRecipe[];
        failedRecipes: FailedDiscoveryRecipe[];
    }
    Index

    Properties

    phase: "parsing" | "complete"

    Current phase of parsing

    current: number

    Index of the recipe currently being parsed

    total: number

    Total number of recipes to parse

    currentRecipeTitle?: string

    Title of the recipe currently being parsed

    parsedRecipes: FullyDiscoveredRecipe[]

    Array of successfully parsed recipes

    failedRecipes: FailedDiscoveryRecipe[]

    Array of recipes that failed to parse