@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
14 lines (11 loc) • 434 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const COMMAND_CANCEL_ID = 80;
declare const COMMAND_CANCEL_CRC_EXTRA = 0;
declare const CommandCancelDefinition: MessageDefinition;
interface MessageCommandCancel {
command: number;
target_system: number;
target_component: number;
}
export { COMMAND_CANCEL_CRC_EXTRA, COMMAND_CANCEL_ID, CommandCancelDefinition };
export type { MessageCommandCancel };