Data for a node's content, either in raw text or html.

interface NodeContent {
    html: null | string;
    text: null | string;
}

Hierarchy (View Summary)

Properties

Properties

html: null | string

The HTML content.

text: null | string

The text content.