mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
24 lines
475 B
TypeScript
24 lines
475 B
TypeScript
import { JournalTimetableSorter } from '../../types/JournalTimetablesTypes';
|
|
|
|
export interface TimetablesQueryParams {
|
|
driverName?: string;
|
|
trainNo?: string;
|
|
timetableId?: string;
|
|
|
|
authorName?: string;
|
|
timestampFrom?: number;
|
|
timestampTo?: number;
|
|
issuedFrom?: string;
|
|
|
|
countFrom?: number;
|
|
countLimit?: number;
|
|
|
|
fulfilled?: number;
|
|
terminated?: number;
|
|
|
|
twr?: number;
|
|
skr?: number;
|
|
|
|
sortBy?: JournalTimetableSorter['id'];
|
|
}
|