MFML - v0.0.4
    Preparing search index...

    Interface OptionNode

    The node that describes an argument option.

    interface OptionNode {
        endIndex?: number;
        name: string;
        nodeType: "option";
        parentNode: null | ArgumentNode;
        startIndex?: number;
        valueNode: null | LiteralNode<any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    endIndex?: number

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

    name: string

    The option name.

    nodeType: "option"

    The node type.

    parentNode: null | ArgumentNode

    The parent node.

    startIndex?: number

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

    valueNode: null | LiteralNode<any>

    The option value.