Procházet zdrojové kódy

introduce the first backend communication datatype

Sven Czarnian před 2 roky
rodič
revize
4bb0a44b7e
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  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;
+};