@designliquido/xpath
    Preparing search index...

    Variable XPathParserConst

    XPathParser: typeof XPath10Parser = XPath10Parser

    Alias for XPath10Parser for backward compatibility.

    Use XPath10Parser, XPath20Parser, or createXPathParser() instead. This alias defaults to XPath 1.0 behavior.

    // Old usage (deprecated):
    const parser = new XPathParser();

    // New recommended usage:
    const parser = new XPath10Parser();
    // or for XPath 2.0:
    const parser = new XPath20Parser();
    // or using the factory:
    const parser = createXPathParser('1.0');