UNPKG

xpath-ts2

Version:

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

7 lines (6 loc) 198 B
import { Expression } from '../xpath-types'; export declare class BinaryOperation extends Expression { lhs: Expression; rhs: Expression; constructor(lhs: Expression, rhs: Expression); }