UNPKG

xpath-ts2

Version:

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

14 lines (10 loc) 245 B
import { Expression } from '../xpath-types'; export class BinaryOperation extends Expression { lhs: Expression; rhs: Expression; constructor(lhs: Expression, rhs: Expression) { super(); this.lhs = lhs; this.rhs = rhs; } }