interface Node {
    data?: CommonData;
    position?: Position;
    type: string;
}

Hierarchy (view full)

Properties

Properties

data?: CommonData
position?: Position

Position of a node in a source document.

Nodes that are generated (not in the original source document) must not have a position.

type: string

Node type.