@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
16 lines (13 loc) • 455 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const PARAM_VALUE_ID = 22;
declare const PARAM_VALUE_CRC_EXTRA = 220;
declare const ParamValueDefinition: MessageDefinition;
interface MessageParamValue {
param_value: number;
param_count: number;
param_index: number;
param_id: string;
param_type: number;
}
export { PARAM_VALUE_CRC_EXTRA, PARAM_VALUE_ID, ParamValueDefinition };
export type { MessageParamValue };