This interface represents an ingredient of the recipe

interface IngredientInRecipe {
    ingredient_name: string;
    quantity: number;
}

Properties

ingredient_name: string
quantity: number