Separated weight tracking

This commit is contained in:
AG
2025-11-29 12:13:12 +02:00
parent 78930f6b80
commit d86abd6b1b
11 changed files with 300 additions and 22 deletions

View File

@@ -72,6 +72,13 @@ export interface UserProfile {
language?: Language;
}
export interface BodyWeightRecord {
id: string;
weight: number;
date: string; // ISO string
dateStr: string; // YYYY-MM-DD
}
export interface User {
id: string;
email: string;