Sporadic set logging added

This commit is contained in:
AG
2025-11-29 19:03:42 +02:00
parent d86abd6b1b
commit b5c8e8ac43
15 changed files with 1491 additions and 396 deletions

View File

@@ -79,6 +79,21 @@ export interface BodyWeightRecord {
dateStr: string; // YYYY-MM-DD
}
export interface SporadicSet {
id: string;
exerciseId: string;
exerciseName: string;
type: ExerciseType;
reps?: number;
weight?: number;
durationSeconds?: number;
distanceMeters?: number;
height?: number;
bodyWeightPercentage?: number;
timestamp: number;
note?: string;
}
export interface User {
id: string;
email: string;