@designliquido/xpath
    Preparing search index...

    Interface XPathFunctionItem

    Represents an XPath 3.0 function item. This is a simplified interface to avoid circular dependencies.

    interface XPathFunctionItem {
        __isFunctionItem: true;
        implementation: (...args: any[]) => any;
        arity: number;
        name?: string;
        namespace?: string;
    }
    Index

    Properties

    __isFunctionItem: true
    implementation: (...args: any[]) => any
    arity: number
    name?: string
    namespace?: string