export interface Flight { is_best: boolean; name: string; departure: string; arrival: string; arrival_time_ahead: string; duration: string; stops: number | string; delay: string | null; price: string; } export interface Result { current_price: "low" | "typical" | "high" | string; flights: Flight[]; }