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) 252 B
import { XPathContext } from '../xpath-types'; import { BinaryOperation } from './binary-operation'; export declare class DivOperation extends BinaryOperation { evaluate(c: XPathContext): import("../xpath-types").XNumber; toString(): string; }