rmapi-js
    Preparing search index...

    Interface SceneTombstoneItemBlock

    the 0x08 scene tombstone item block — a deleted-item marker

    interface SceneTombstoneItemBlock {
        currentVersion: number;
        extraData: Uint8Array;
        item: SceneItem<undefined>;
        minVersion: number;
        parentId: CrdtId;
        reserved: number;
        type: "sceneTombstone";
    }

    Hierarchy

    • BlockCommon
      • SceneTombstoneItemBlock
    Index
    currentVersion: number

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

    extraData: Uint8Array

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

    item: SceneItem<undefined>

    the deleted item's envelope (no value)

    minVersion: number

    the block's minimum reader version

    parentId: CrdtId

    the parent group's crdt id

    reserved: number

    the header byte between the block length and the versions

    Zero in every well-formed file seen, but preserved rather than assumed.

    type: "sceneTombstone"

    the block-type discriminant