ServingSize
The serving amount of food item
Attribute
Description
quantity
The quantity of the serving size.
unitName
The name of the serving unit (e.g., ounce, slice, container).
/*
* The serving amount of food item
*/
export interface ServingSize {
/** The quantity of the serving size. */
quantity: number
/** The name of the serving unit (e.g., ounce, slice, container). */
unitName: string
}
Last updated