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.
19 lines
313 B
TypeScript
19 lines
313 B
TypeScript
|
3 years ago
|
export interface IDroneInfo {
|
||
|
|
droneName: string
|
||
|
|
sort: number
|
||
|
|
id: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IDroneLocationInfo {
|
||
|
|
id: string
|
||
|
|
bettery: number
|
||
|
|
locationN: string
|
||
|
|
locationE: string
|
||
|
|
}
|
||
|
|
|
||
|
|
// export interface IRespose {
|
||
|
|
// success: boolean
|
||
|
|
// msg: string
|
||
|
|
// code: number
|
||
|
|
// t: IGameData
|
||
|
|
// }
|