PassioSearchNutritionPreview

Interface representing the nutrition preview of a food search result

AttributeDescription

calories

Property for the calories of the food.

servingQuantity

Property for the serving quantity of the food (optional).

servingUnit

Property for the serving unit of the food (optional).

servingWeight

Property for the serving weight of the food (optional).

export interface PassioSearchNutritionPreview {
  // Property for the calories of the food
  calories: number
  // Property for the serving quantity of the food
  servingQuantity?: number
  // Property for the serving unit of the food
  servingUnit?: string
  // Property for the serving weight of the food
  servingWeight?: string
}

Last updated