MFML - v0.0.4
    Preparing search index...

    Interface OctothorpeNode

    The node that descries an argument reference in a category.

    interface OctothorpeNode {
        endIndex?: number;
        nodeType: "octothorpe";
        parentNode: null | ParentNode;
        startIndex?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    endIndex?: number

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

    nodeType: "octothorpe"

    The node type.

    parentNode: null | ParentNode

    The parent node.

    startIndex?: number

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