Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BlockReference

import type { BlockReference } from "https://aws-api.deno.dev/v0.4/services/comprehend.ts?docs=full";

A reference to a block.

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

§Properties

§
BeginOffset?: number | null
[src]

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

§
BlockId?: string | null
[src]

Unique identifier for the block.

§
ChildBlocks?: ChildBlock[] | null
[src]

List of child blocks within this block.

§
EndOffset?: number | null
[src]

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