This interface represents an item

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

Properties

Properties

name: string
price: number