@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
9 lines (7 loc) • 353 B
TypeScript
type STORAGE_STATUS = 0 | 1 | 2 | 3;
declare const STORAGE_STATUS_EMPTY: 0;
declare const STORAGE_STATUS_UNFORMATTED: 1;
declare const STORAGE_STATUS_READY: 2;
declare const STORAGE_STATUS_NOT_SUPPORTED: 3;
export { STORAGE_STATUS_EMPTY, STORAGE_STATUS_NOT_SUPPORTED, STORAGE_STATUS_READY, STORAGE_STATUS_UNFORMATTED };
export type { STORAGE_STATUS };