UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

8 lines 249 B
import SQLFunction from './SQLFunction'; export default class Count extends SQLFunction { constructor(expr, distinct = false, aliaz = null) { super(expr, aliaz); this.distinct = distinct; } } //# sourceMappingURL=Count.js.map