Interface IngredientInRecipe

Ingredient in recipe schema

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

Properties

ingredient_name: string
quantity: number