@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
12 lines (10 loc) • 626 B
TypeScript
type CAMERA_STATUS_TYPES = 0 | 1 | 2 | 3 | 4 | 5 | 6;
declare const CAMERA_STATUS_TYPE_HEARTBEAT: 0;
declare const CAMERA_STATUS_TYPE_TRIGGER: 1;
declare const CAMERA_STATUS_TYPE_DISCONNECT: 2;
declare const CAMERA_STATUS_TYPE_ERROR: 3;
declare const CAMERA_STATUS_TYPE_LOWBATT: 4;
declare const CAMERA_STATUS_TYPE_LOWSTORE: 5;
declare const CAMERA_STATUS_TYPE_LOWSTOREV: 6;
export { CAMERA_STATUS_TYPE_DISCONNECT, CAMERA_STATUS_TYPE_ERROR, CAMERA_STATUS_TYPE_HEARTBEAT, CAMERA_STATUS_TYPE_LOWBATT, CAMERA_STATUS_TYPE_LOWSTORE, CAMERA_STATUS_TYPE_LOWSTOREV, CAMERA_STATUS_TYPE_TRIGGER };
export type { CAMERA_STATUS_TYPES };