interface TextNode {
    nodeName: "#text";
    parentNode: null | ParentNode;
    sourceCodeLocation?: null | Location;
    value: string;
}

Properties

nodeName: "#text"
parentNode: null | ParentNode

Parent node.

sourceCodeLocation?: null | Location

Comment source code location info. Available if location info is enabled.

value: string

Text content.

Generated using TypeDoc