baublet/w8mngr

View on GitHub
api/dataServices/foodLog/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type FoodLogEntity = {
  id: string;
  userId: string;
  day: string;
  description: string;
  calories?: number | null;
  fat?: number | null;
  carbs?: number | null;
  protein?: number | null;
};