@designliquido/xpath
    Preparing search index...

    Interface FunctionType

    Represents the type signature of a function.

    interface FunctionType {
        kind: "function";
        parameterTypes: SequenceType[];
        returnType: SequenceType;
        arity: number;
    }
    Index

    Properties

    kind: "function"
    parameterTypes: SequenceType[]

    Types of the function parameters

    returnType: SequenceType

    Return type of the function

    arity: number

    Number of parameters (arity)