introduce the first backend communication datatype

This commit is contained in:
Sven Czarnian
2022-11-03 23:37:43 +01:00
parent 34e19a5693
commit 4bb0a44b7e

5
src/types/index.ts Normal file
View File

@@ -0,0 +1,5 @@
export interface AirportOverview {
icao: string;
name: string;
flightInformationRegion: string;
};