rmapi-js
    Preparing search index...

    Interface RootTextBlock

    the 0x07 root text block — the page's document text

    interface RootTextBlock {
        blockId: CrdtId;
        currentVersion: number;
        extraData: Uint8Array;
        minVersion: number;
        text: RmV6Text;
        type: "rootText";
    }

    Hierarchy

    • BlockCommon
      • RootTextBlock
    Index

    Properties

    blockId: CrdtId

    the text block's crdt id

    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

    minVersion: number

    the block's minimum reader version

    text: RmV6Text

    the parsed document text

    type: "rootText"

    the block-type discriminant