@sequeljs/ast
Version:
A SQL AST manager for JavaScript
16 lines (10 loc) • 300 B
text/typescript
import Binary from './Binary'
import type AliasPredication from '../mixins/AliasPredication'
class Over extends Binary {
public readonly operator = 'OVER'
constructor(left: any, right: any = null) {
super(left, right)
}
}
interface Over extends AliasPredication {}
export default Over