pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface AckOutcome

    What an incoming acknowledgement means for the command in flight.

    interface AckOutcome {
        kind: "unrelated" | "inProgress" | "final";
        value: number | null;
    }
    Index
    kind: "unrelated" | "inProgress" | "final"

    unrelated, inProgress, or final.

    value: number | null

    The progress percent when in progress (255 when the autopilot does not report one), the MAV_RESULT when final, or null when unrelated.