@designliquido/xpath
    Preparing search index...

    Interface FunctionSignature

    interface FunctionSignature {
        name: string;
        namespace?: string;
        argumentTypes?: SequenceType[];
        returnType?: SequenceType;
        minArgs: number;
        maxArgs?: number;
    }
    Index

    Properties

    name: string

    QName (prefix:local or local) of the function.

    namespace?: string

    Namespace for the function; defaults to DEFAULT_FUNCTION_NAMESPACE.

    argumentTypes?: SequenceType[]

    Optional argument types for static checking.

    returnType?: SequenceType

    Optional return type for static checking.

    minArgs: number

    Minimum required arguments.

    maxArgs?: number

    Maximum allowed arguments (undefined = unbounded).