rmapi-js
    Preparing search index...

    Interface UnknownBlock

    a block whose type we don't parse, kept verbatim for round-tripping

    interface UnknownBlock {
        blockType: number;
        currentVersion: number;
        data: Uint8Array;
        extraData: Uint8Array;
        minVersion: number;
        type: "unknown";
    }

    Hierarchy

    • BlockCommon
      • UnknownBlock
    Index

    Properties

    blockType: number

    the raw numeric block type

    currentVersion: number

    the block's current version (selects the point encoding for lines)

    data: Uint8Array

    the raw block body bytes

    extraData: Uint8Array

    the unread tail of the block, preserved for round-tripping

    minVersion: number

    the block's minimum reader version

    type: "unknown"

    the block-type discriminant