Interface Ingredient

Ingredient properties.

interface Ingredient {
    description: string;
    isGroupHeader: boolean;
    quantity: null | number;
    quantity2: null | number;
    unitOfMeasure: null | string;
    unitOfMeasureID: null | string;
}

Properties

description: string

The description

isGroupHeader: boolean

Whether the "ingredient" is actually a group header, e.g. "For icing:"

quantity: null | number

The primary quantity (the lower quantity in a range, if applicable)

quantity2: null | number

The secondary quantity (the upper quantity in a range, or null if not applicable)

unitOfMeasure: null | string

The unit of measure

unitOfMeasureID: null | string

The unit of measure identifier

Generated using TypeDoc