feat: add calories in the calendar

This commit is contained in:
2025-09-04 17:12:14 -03:00
parent f8440ac3e5
commit b891d077a4
7 changed files with 191 additions and 23 deletions
+6
View File
@@ -27,3 +27,9 @@ export type UserSettings = {
carboGoal: number;
fiberGoal: number;
};
export type DailyTotalCalories = {
documentId: string;
day: number;
totalCalories: number;
};