UNPKG

xpath-ts2

Version:

DOM 3 and 4 XPath 1.0 implementation for browser and Node.js environment with support for typescript 5.

9 lines (8 loc) 286 B
import { Expression, XPathContext } from './xpath-types'; export declare class FunctionCall extends Expression { functionName: string; arguments: Expression[]; constructor(fn: string, args: Expression[]); evaluate(c: XPathContext): Expression; toString(): string; }