瀏覽代碼

introduce the first backend communication datatype

Sven Czarnian 2 年之前
父節點
當前提交
4bb0a44b7e
共有 1 個文件被更改,包括 5 次插入0 次删除
  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;
+};