@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
12 lines (10 loc) • 504 B
TypeScript
type SET_FOCUS_TYPE = 0 | 1 | 2 | 3 | 4 | 5 | 6;
declare const FOCUS_TYPE_STEP: 0;
declare const FOCUS_TYPE_CONTINUOUS: 1;
declare const FOCUS_TYPE_RANGE: 2;
declare const FOCUS_TYPE_METERS: 3;
declare const FOCUS_TYPE_AUTO: 4;
declare const FOCUS_TYPE_AUTO_SINGLE: 5;
declare const FOCUS_TYPE_AUTO_CONTINUOUS: 6;
export { FOCUS_TYPE_AUTO, FOCUS_TYPE_AUTO_CONTINUOUS, FOCUS_TYPE_AUTO_SINGLE, FOCUS_TYPE_CONTINUOUS, FOCUS_TYPE_METERS, FOCUS_TYPE_RANGE, FOCUS_TYPE_STEP };
export type { SET_FOCUS_TYPE };