@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
9 lines (7 loc) • 361 B
TypeScript
type MAV_GOTO = 0 | 1 | 2 | 3;
declare const MAV_GOTO_DO_HOLD: 0;
declare const MAV_GOTO_DO_CONTINUE: 1;
declare const MAV_GOTO_HOLD_AT_CURRENT_POSITION: 2;
declare const MAV_GOTO_HOLD_AT_SPECIFIED_POSITION: 3;
export { MAV_GOTO_DO_CONTINUE, MAV_GOTO_DO_HOLD, MAV_GOTO_HOLD_AT_CURRENT_POSITION, MAV_GOTO_HOLD_AT_SPECIFIED_POSITION };
export type { MAV_GOTO };