UNPKG

xpath-ts2

Version:

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

8 lines (7 loc) 237 B
import { Expression, XPathContext } from './xpath-types'; export declare class VariableReference extends Expression { variable: string; constructor(v: string); toString(): string; evaluate(c: XPathContext): Expression; }