Cleanup kodu

This commit is contained in:
2022-09-10 17:57:43 +02:00
parent 2a131ab1fb
commit 93aa889414
16 changed files with 114 additions and 93 deletions
@@ -0,0 +1,3 @@
export type JournalDispatcherSearcher = {
[key in 'search-dispatcher' | 'search-station']: string;
};
@@ -0,0 +1,11 @@
import { JournalFilterType } from '../../scripts/enums/JournalFilterType';
export type JournalTimetableSearcher = {
[key in 'search-driver' | 'search-train' | 'search-date']: string;
};
export interface JournalFilter {
id: JournalFilterType;
filterSection: string;
isActive: boolean;
}