@squawk
    Preparing search index...

    Interface DeframeResult

    Result of deframing as much of a byte buffer as currently possible.

    interface DeframeResult {
        errors: BeastFrameError[];
        frames: BeastFrame[];
        remainder: Uint8Array;
    }
    Index
    errors: BeastFrameError[]

    Framing or decode errors encountered, in stream order relative to frames.

    frames: BeastFrame[]

    Frames successfully deframed, in stream order.

    remainder: Uint8Array

    Unconsumed trailing bytes - a frame that started but has not fully arrived yet. Prepend this to the next chunk and call deframeBeastBytes again; empty if the buffer ended exactly on a frame boundary.