Explorar el Código

introduce the first backend communication datatype

Sven Czarnian hace 2 años
padre
commit
4bb0a44b7e
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  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;
+};