sicherung ggggg
This commit is contained in:
@ -1,107 +0,0 @@
|
||||
export interface IFlights {
|
||||
success: boolean;
|
||||
message: string;
|
||||
meta: Meta;
|
||||
data?: (IFlight)[] | null;
|
||||
}
|
||||
export interface Meta {
|
||||
totalCount: number;
|
||||
}
|
||||
export interface IFlight {
|
||||
IDFlight: string;
|
||||
FKGliderCategory: string;
|
||||
Category: string;
|
||||
FKCompetitionClass: string;
|
||||
FKCompetitionClassDesired?: null;
|
||||
CompetitionClass: string;
|
||||
FKLaunchtype: string;
|
||||
Launchtype: string;
|
||||
FKPilot: string;
|
||||
FirstName: string;
|
||||
LastName: string;
|
||||
Nationality: string;
|
||||
FKFederation?: string | null;
|
||||
ClubID?: string | null;
|
||||
ClubName?: string | null;
|
||||
Glider: string;
|
||||
FKGlider?: string | null;
|
||||
FKGliderBrand?: string | null;
|
||||
GliderBrand?: string | null;
|
||||
FKGliderClassification: string;
|
||||
GliderClassification: string;
|
||||
FKSeason: string;
|
||||
FlightDate: string;
|
||||
UtcOffset: string;
|
||||
FlightStartTime: string;
|
||||
FlightEndTime: string;
|
||||
FlightDuration: string;
|
||||
FirstLat: string;
|
||||
FirstLng: string;
|
||||
LastLat: string;
|
||||
LastLng: string;
|
||||
FlightMinLat: string;
|
||||
FlightMaxLat: string;
|
||||
FlightMinLng: string;
|
||||
FlightMaxLng: string;
|
||||
TakeoffCountry: string;
|
||||
FKTakeoffWaypoint: string;
|
||||
TakeoffWaypointOffset: string;
|
||||
TakeoffLocation?: string | null;
|
||||
TakeoffWaypointName: string;
|
||||
FKClosestWaypoint?: string | null;
|
||||
ClosestWaypointOffset?: string | null;
|
||||
LandingCountry: string;
|
||||
FKLandingWaypoint?: string | null;
|
||||
LandingWaypointOffset?: string | null;
|
||||
LandingWaypointName?: string | null;
|
||||
LandingLocation?: string | null;
|
||||
LinearDistance: string;
|
||||
MaxLinearDistance: string;
|
||||
ArcDistance?: string | null;
|
||||
FKBestTaskType: string;
|
||||
BestTaskType: string;
|
||||
BestTaskTypeKey: string;
|
||||
BestTaskDistance: string;
|
||||
BestTaskPoints: string;
|
||||
BestTaskDuration: string;
|
||||
MaxSpeed?: string | null;
|
||||
GroundSpeed?: string | null;
|
||||
BestTaskSpeed: string;
|
||||
TakeoffAltitude: string;
|
||||
MaxAltitude: string;
|
||||
MinAltitude: string;
|
||||
ElevationGain?: string | null;
|
||||
MeanAltitudeDiff: string;
|
||||
MaxClimb: string;
|
||||
MinClimb: string;
|
||||
Dataversion: string;
|
||||
ValidBRecordsCount?: string | null;
|
||||
AirspaceViolationLevel?: string | null;
|
||||
UserReviewComment: string;
|
||||
UserReviewStatus: string;
|
||||
ReviewRequired: string;
|
||||
ReviewReason: string;
|
||||
ReviewStatus: string;
|
||||
ReviewComment: string;
|
||||
ReviewBy: string;
|
||||
ReviewTime?: null;
|
||||
CommentsEnabled: string;
|
||||
CountComments: string;
|
||||
HasPhotos: string;
|
||||
IsBigSmileCandidate: string;
|
||||
WxcCivlID?: string | null;
|
||||
WxcNacStatus?: string | null;
|
||||
WxcSync?: string | null;
|
||||
WxcSyncTS?: string | null;
|
||||
IgcFilename: string;
|
||||
IgcFileHash: string;
|
||||
GRecordStatus: string;
|
||||
GValidationMessage: string;
|
||||
IsNew: string;
|
||||
CanRetract: string;
|
||||
StatisticsValid: string;
|
||||
UC?: string | null;
|
||||
TC: string;
|
||||
US: string;
|
||||
TS: string;
|
||||
}
|
||||
4
src/interfaces/IKey.ts
Normal file
4
src/interfaces/IKey.ts
Normal file
@ -0,0 +1,4 @@
|
||||
export interface IKey
|
||||
{
|
||||
key: number;
|
||||
}
|
||||
Reference in New Issue
Block a user