Zmiana pozycji karty filtrów scenerii; dodano filtrowanie autorów

This commit is contained in:
2022-06-10 01:17:30 +02:00
parent d0e8b5cb51
commit 756ac0b8d9
12 changed files with 279 additions and 163 deletions
+3 -1
View File
@@ -1,5 +1,5 @@
export default interface Filter {
[key: string]: (boolean | number),
[key: string]: (boolean | number | string),
default: boolean;
notDefault: boolean;
real: boolean;
@@ -36,5 +36,7 @@ export default interface Filter {
unavailableStatus: boolean;
unsignedStatus: boolean;
authors: string;
onlineFromHours: number;
}
+1
View File
@@ -19,6 +19,7 @@ export default interface Station {
controlType: string;
SUP: boolean;
authors?: string[];
availability: Availability;
routes: StationRoutes;