T
Content
testedA block's content. Three shapes, chosen by the block's schema: - `Inline` for text blocks (paragraph, heading, list item), - `readonly Node[]` for container blocks (reserved; no default block uses it), - `null` for atom/void blocks (image, divider).
Signature
ts
export type Content = Inline | readonly Node[] | null;