import { EntryLine } from ".";

export interface FlightPool {
  outward: EntryLine[];
  return: EntryLine[];
}
