baublet/w8mngr

View on GitHub
client/components/Foods/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type FoodLogInput = {
  description: string;
  calories?: number;
  fat?: number;
  carbs?: number;
  protein?: number;
};