UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

17 lines 632 B
import BitwiseNot from '../nodes/BitwiseNot'; import Division from '../nodes/Division'; import Grouping from '../nodes/Grouping'; import Multiplication from '../nodes/Multiplication'; export default abstract class Math { add(other: any): Grouping; bitwiseAnd(other: any): Grouping; bitwiseNot(): BitwiseNot; bitwiseOr(other: any): Grouping; bitwiseShiftLeft(other: any): Grouping; bitwiseShiftRight(other: any): Grouping; bitwiseXor(other: any): Grouping; divide(other: any): Division; multiply(other: any): Multiplication; subtract(other: any): Grouping; } //# sourceMappingURL=Math.d.ts.map