feat: journal timetable view mode

This commit is contained in:
2025-04-25 02:14:45 +02:00
parent 3b68056acc
commit 17d5574d0c
15 changed files with 628 additions and 224 deletions
+3 -2
View File
@@ -1,4 +1,4 @@
export type ViewMode = 'active' | 'storage';
export type ViewMode = 'active' | 'storage' | 'journal';
export enum StorageMode {
LOCAL = 'local',
@@ -245,7 +245,7 @@ export interface JournalTimetableDetailed extends JournalTimetableShort {
warningNotes: string;
hasDangerousCargo: boolean;
hasExtraDeliveries: boolean;
stopListString: any;
stopListString?: string;
}
export interface TimetableData {
@@ -265,4 +265,5 @@ export interface TimetableData {
stopListString: string;
headUnits: string[];
savedTimestamp?: number;
journalCreatedAt?: number;
}