@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
11 lines (9 loc) • 389 B
TypeScript
type LIMITS_STATE = 0 | 1 | 2 | 3 | 4 | 5;
declare const LIMITS_INIT: 0;
declare const LIMITS_DISABLED: 1;
declare const LIMITS_ENABLED: 2;
declare const LIMITS_TRIGGERED: 3;
declare const LIMITS_RECOVERING: 4;
declare const LIMITS_RECOVERED: 5;
export { LIMITS_DISABLED, LIMITS_ENABLED, LIMITS_INIT, LIMITS_RECOVERED, LIMITS_RECOVERING, LIMITS_TRIGGERED };
export type { LIMITS_STATE };