Pārlūkot izejas kodu

introduce the first backend communication datatype

Sven Czarnian 2 gadi atpakaļ
vecāks
revīzija
4bb0a44b7e
1 mainītis faili ar 5 papildinājumiem un 0 dzēšanām
  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;
+};