Update types.ts
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@ type FoodCategory = 'fats' | 'proteins' | 'carbs' | 'leaves' | 'fruits' | 'low c
|
|||||||
export type FoodItem = {
|
export type FoodItem = {
|
||||||
name: string;
|
name: string;
|
||||||
nameEn: string;
|
nameEn: string;
|
||||||
info: { calories: number, protein: number, fat: number, carbs: number, fiber: number, category: FoodCategory, alkaline: boolean }
|
info: { calories: number, protein: number, fat: number, carbs: number, fiber: number, category: FoodCategory, alkaline: boolean, bestFor: Array<String> }
|
||||||
}
|
}
|
||||||
|
|
||||||
export type FoodStorage = {
|
export type FoodStorage = {
|
||||||
|
|||||||
Reference in New Issue
Block a user