Dan Albert 6ff9208d46 Reorganize React project structure.
Whatever I was doing was getting out of control :)
2022-03-01 01:14:21 -08:00

11 lines
201 B
TypeScript

import { LatLng } from "leaflet";
import { Waypoint } from "./waypoint";
export interface Flight {
id: string;
blue: boolean;
position: LatLng;
sidc: string;
waypoints: Waypoint[] | null;
}