UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

10 lines (7 loc) 229 B
import SQLFunction from './SQLFunction' export default class Count extends SQLFunction { constructor(expr: any, distinct: boolean | null = false, aliaz: any = null) { super(expr, aliaz) this.distinct = distinct } }