A reference to a block.

interface BlockReference {
    BeginOffset?: number;
    BlockId?: string;
    ChildBlocks?: ChildBlock[];
    EndOffset?: number;
}

Properties

BeginOffset?: number

Offset of the start of the block within its parent block.

BlockId?: string

Unique identifier for the block.

ChildBlocks?: ChildBlock[]

List of child blocks within this block.

EndOffset?: number

Offset of the end of the block within its parent block.