Mist, jetzt vielleicht

This commit is contained in:
rxf
2026-03-11 20:33:19 +01:00
parent bc235e4e32
commit a949ebcdc8
28 changed files with 1666 additions and 74 deletions

30
types/tablette.ts Normal file
View File

@@ -0,0 +1,30 @@
export interface Tablette {
tab: string;
pday: number;
cnt: number;
at: string; // ISO date string "YYYY-MM-DD" or ""
akt: number;
until: string; // ISO date string "YYYY-MM-DD" or ""
warn: boolean;
rem: string;
order: string;
}
export interface TabletteRaw {
tab: string;
pday: number;
cnt: number;
at: Date | string;
akt: number;
until: Date | string;
warn: boolean;
rem: string;
order: string;
}
export interface DataResponse {
total: number;
page: number;
records: number;
values: Tablette[];
}