import { RecipeInput } from "speakeasy-recipe-book/models/custom_components";
let value: RecipeInput = {
name: "<value>",
ingredients: [
"<value>",
],
instructions: "<value>",
};
Field | Type | Required | Description |
---|---|---|---|
name |
string | ✔️ | Name of the recipe |
ingredients |
string[] | ✔️ | List of ingredients |
instructions |
string | ✔️ | Cooking instructions for the recipe |
servings |
number | ➖ | Number of servings |
prepTime |
number | ➖ | Preparation time in minutes |