@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
10 lines (8 loc) • 440 B
TypeScript
type UTM_FLIGHT_STATE = 1 | 2 | 3 | 16 | 32;
declare const UTM_FLIGHT_STATE_UNKNOWN: 1;
declare const UTM_FLIGHT_STATE_GROUND: 2;
declare const UTM_FLIGHT_STATE_AIRBORNE: 3;
declare const UTM_FLIGHT_STATE_EMERGENCY: 16;
declare const UTM_FLIGHT_STATE_NOCTRL: 32;
export { UTM_FLIGHT_STATE_AIRBORNE, UTM_FLIGHT_STATE_EMERGENCY, UTM_FLIGHT_STATE_GROUND, UTM_FLIGHT_STATE_NOCTRL, UTM_FLIGHT_STATE_UNKNOWN };
export type { UTM_FLIGHT_STATE };