MFML - v0.0.4
    Preparing search index...

    Interface TextNode

    The node that describes a char sequence.

    interface TextNode {
        endIndex?: number;
        nodeType: "text";
        parentNode: null | ParentNode;
        startIndex?: number;
        value: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    endIndex?: number

    The index at which a node value ends (exclusive).

    nodeType: "text"

    The node type.

    parentNode: null | ParentNode

    The parent node.

    startIndex?: number

    The index at which a node value starts (inclusive).

    value: string

    The decoded text.