Preparing search index...
    ScrapedRecipeData: Omit<
        Partial<recipeTableElement>,
        "ingredients" | "nutrition",
    > & {
        ingredients?: FormIngredientElement[];
        nutrition?: nutritionTableElement;
    }

    Type for scraped recipe data passed to the Recipe screen. Uses FormIngredientElement[] for ingredients since they need validation.