Parcourir la source

introduce the first backend communication datatype

Sven Czarnian il y a 2 ans
Parent
commit
4bb0a44b7e
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5 0
      src/types/index.ts

+ 5 - 0
src/types/index.ts

@@ -0,0 +1,5 @@
+export interface AirportOverview {
+  icao: string;
+  name: string;
+  flightInformationRegion: string;
+};