UNPKG

xpath-ts2

Version:

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

12 lines (8 loc) 188 B
import { Expression } from '../xpath-types'; export class UnaryOperation extends Expression { rhs: Expression; constructor(rhs: Expression) { super(); this.rhs = rhs; } }