Interface Node

A node in the book.

interface Node {
    id: string;
    type: NodeType;
}

Hierarchy (view full)

Properties

Properties

id: string

The unique identifier of the node.

type: NodeType

The type of the node.