Prechádzať zdrojové kódy

introduce the first backend communication datatype

Sven Czarnian 2 rokov pred
rodič
commit
4bb0a44b7e
1 zmenil súbory, kde vykonal 5 pridanie a 0 odobranie
  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;
+};