Browse Source

introduce the first backend communication datatype

Sven Czarnian 2 years ago
parent
commit
4bb0a44b7e
1 changed files with 5 additions and 0 deletions
  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;
+};