@qite/tide-client
Version:
Frontend client for Tide
12 lines (11 loc) • 326 B
TypeScript
export interface SelectedFlight {
flightCode: string;
flightNumbers: string[];
operatingFlightNumbers: string[] | null;
startDateTime: string | null;
endDateTime: string | null;
departureHourMin: number | null;
departureHourMax: number | null;
arrivalHourMin: number | null;
arrivalHourMax: number | null;
}