This interface represents a menu item with its name, its recipe and its price

interface Item {
    name: string;
    price: number;
    recipe: IngredientInRecipe[];
}

Properties

Properties

name: string
price: number