Preparing search index...

    Complete recipe data as scraped from a recipe website. Matches the output of the recipe-scrapers Python package.

    interface ScrapedRecipe {
        title: null | string;
        description: null | string;
        ingredients: string[];
        parsedIngredients: null | ParsedIngredient[];
        ingredientGroups: null | IngredientGroup[];
        instructions: null | string;
        instructionsList: null | string[];
        parsedInstructions: null | ParsedInstruction[];
        totalTime: null | number;
        prepTime: null | number;
        cookTime: null | number;
        yields: null | string;
        image: null | string;
        host: null | string;
        canonicalUrl: null | string;
        siteName: null | string;
        author: null | string;
        language: null | string;
        category: null | string;
        cuisine: null | string;
        cookingMethod: null | string;
        keywords: null | string[];
        dietaryRestrictions: null | string[];
        ratings: null | number;
        ratingsCount: null | number;
        nutrients: null | ScrapedNutrients;
        equipment: null | string[];
        links: null | RecipeLink[];
    }
    Index

    Properties

    title: null | string
    description: null | string
    ingredients: string[]
    parsedIngredients: null | ParsedIngredient[]
    ingredientGroups: null | IngredientGroup[]
    instructions: null | string
    instructionsList: null | string[]
    parsedInstructions: null | ParsedInstruction[]
    totalTime: null | number
    prepTime: null | number
    cookTime: null | number
    yields: null | string
    image: null | string
    host: null | string
    canonicalUrl: null | string
    siteName: null | string
    author: null | string
    language: null | string
    category: null | string
    cuisine: null | string
    cookingMethod: null | string
    keywords: null | string[]
    dietaryRestrictions: null | string[]
    ratings: null | number
    ratingsCount: null | number
    nutrients: null | ScrapedNutrients
    equipment: null | string[]
    links: null | RecipeLink[]