baublet/w8mngr

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

Summary

Maintainability
A
0 mins
Test Coverage
export type WeightLog = {
  id: string;
  createdAt: Date;
  updatedAt: Date;
  day: string;
  userId: string;
  // In grams
  weight: number;
};