@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
10 lines (8 loc) • 550 B
TypeScript
type CELLULAR_CONFIG_RESPONSE = 0 | 1 | 2 | 3 | 4;
declare const CELLULAR_CONFIG_RESPONSE_ACCEPTED: 0;
declare const CELLULAR_CONFIG_RESPONSE_APN_ERROR: 1;
declare const CELLULAR_CONFIG_RESPONSE_PIN_ERROR: 2;
declare const CELLULAR_CONFIG_RESPONSE_REJECTED: 3;
declare const CELLULAR_CONFIG_BLOCKED_PUK_REQUIRED: 4;
export { CELLULAR_CONFIG_BLOCKED_PUK_REQUIRED, CELLULAR_CONFIG_RESPONSE_ACCEPTED, CELLULAR_CONFIG_RESPONSE_APN_ERROR, CELLULAR_CONFIG_RESPONSE_PIN_ERROR, CELLULAR_CONFIG_RESPONSE_REJECTED };
export type { CELLULAR_CONFIG_RESPONSE };