You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
647 B
TypeScript
37 lines
647 B
TypeScript
export interface IDroneInfo {
|
|
droneName: string
|
|
sort: number
|
|
id: string
|
|
}
|
|
|
|
export interface IDroneLocationInfo {
|
|
id: string
|
|
bettery: number
|
|
locationN: string
|
|
locationE: string
|
|
}
|
|
|
|
export interface IDroneDetailValueInfo {
|
|
id: string
|
|
high: string
|
|
speed: string
|
|
acceleration: string
|
|
direction: string
|
|
pitch: string
|
|
yaw: string
|
|
roll: string
|
|
mode: string
|
|
}
|
|
|
|
export interface IDroneWeatherValueInfo {
|
|
atmosphericPressure: string
|
|
windDirection: string
|
|
windSpeed: string
|
|
}
|
|
|
|
// export interface IRespose {
|
|
// success: boolean
|
|
// msg: string
|
|
// code: number
|
|
// t: IGameData
|
|
// }
|