@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
13 lines (11 loc) • 567 B
TypeScript
type MAV_SEVERITY = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
declare const MAV_SEVERITY_EMERGENCY: 0;
declare const MAV_SEVERITY_ALERT: 1;
declare const MAV_SEVERITY_CRITICAL: 2;
declare const MAV_SEVERITY_ERROR: 3;
declare const MAV_SEVERITY_WARNING: 4;
declare const MAV_SEVERITY_NOTICE: 5;
declare const MAV_SEVERITY_INFO: 6;
declare const MAV_SEVERITY_DEBUG: 7;
export { MAV_SEVERITY_ALERT, MAV_SEVERITY_CRITICAL, MAV_SEVERITY_DEBUG, MAV_SEVERITY_EMERGENCY, MAV_SEVERITY_ERROR, MAV_SEVERITY_INFO, MAV_SEVERITY_NOTICE, MAV_SEVERITY_WARNING };
export type { MAV_SEVERITY };