Interface IngredientOptions<AdditionalData>

Represents the options for creating an ingredient.

interface IngredientOptions<AdditionalData> {
    name: string;
    type: string;
    ingredientId: string;
}

Type Parameters

  • AdditionalData extends object = any

Properties

name: string

The name of the ingredient.

type: string

The type of the ingredient.

ingredientId: string

The ingredient id.