für Docker angepasst

This commit is contained in:
rxf
2026-02-22 22:11:52 +01:00
parent e14af11e5c
commit e28cca1c46
21 changed files with 1494 additions and 94 deletions

22
types/werte.ts Normal file
View File

@@ -0,0 +1,22 @@
export interface WerteEntry {
ID?: number;
Datum: string;
Zeit: string;
Zucker?: number | string;
Essen?: string;
Gewicht?: number | string;
DruckS?: number | string;
DruckD?: number | string;
Puls?: number | string;
}
export interface CreateWerteEntry {
Datum: string;
Zeit: string;
Zucker?: number | string;
Essen?: string;
Gewicht?: number | string;
DruckS?: number | string;
DruckD?: number | string;
Puls?: number | string;
}