Preparing search index...

    Complete recipe data after full page parsing

    Contains all extracted recipe information including ingredients, tags, preparation steps, and cached image.

    interface FullyDiscoveredRecipe {
        url: string;
        title: string;
        description: string;
        localImageUri?: string;
        persons: number;
        time: number;
        ingredients: Partial<ingredientTableElement>[];
        tags: tagTableElement[];
        preparation: preparationStepElement[];
        nutrition?: nutritionTableElement;
        skippedIngredients?: string[];
    }
    Index

    Properties

    url: string

    URL of the source recipe page

    title: string

    Recipe title

    description: string

    Recipe description

    localImageUri?: string

    Local file URI of cached recipe image

    persons: number

    Number of servings

    time: number

    Cooking time in minutes

    ingredients: Partial<ingredientTableElement>[]

    List of parsed ingredients

    List of recipe tags/categories

    preparation: preparationStepElement[]

    List of preparation steps

    Nutritional information

    skippedIngredients?: string[]

    Ingredients that were skipped during parsing