Browse Source

introduce the first backend communication datatype

Sven Czarnian 2 năm trước cách đây
mục cha
commit
4bb0a44b7e
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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;
+};