UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

14 lines (9 loc) 298 B
import Unary from './Unary' import type Attribute from '../attributes/Attribute' export default class UnaryOperation extends Unary { public readonly operator: string constructor(operator: string, operand: number | string | Attribute) { super(operand) this.operator = operator } }