MFML - v0.0.4
    Preparing search index...

    Interface CategoryNode

    The node describes a category selection based on the value of an argument.

    interface CategoryNode {
        childNodes: ChildNode[];
        endIndex?: number;
        name: string;
        nodeType: "category";
        parentNode: null | ArgumentNode;
        startIndex?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    childNodes: ChildNode[]

    The array of child nodes.

    endIndex?: number

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

    name: string

    The category name.

    nodeType: "category"

    The node type.

    parentNode: null | ArgumentNode

    The parent node.

    startIndex?: number

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