@squawk
    Preparing search index...

    Interface BeastFrameError

    One frame that failed to parse: either its escape/length framing was malformed, or (for a Mode-S frame) it parsed as a well-formed frame but the message inside failed to decode.

    interface BeastFrameError {
        bytes: Uint8Array;
        reason: "malformedFraming" | "undecodedMessage";
    }
    Index
    bytes: Uint8Array

    The raw bytes involved, where available - the malformed span for a framing error, or the full frame's message bytes for an undecoded message.

    reason: "malformedFraming" | "undecodedMessage"

    Why the frame could not be produced.