Ver Fonte

introduce the first backend communication datatype

Sven Czarnian há 2 anos atrás
pai
commit
4bb0a44b7e
1 ficheiros alterados com 5 adições e 0 exclusões
  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;
+};