UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

12 lines 359 B
import NodeExpression from './NodeExpression'; import type AliasPredication from '../mixins/AliasPredication'; declare class And extends NodeExpression { readonly children: any[]; get left(): any; get right(): any; constructor(children: any[]); } interface And extends AliasPredication { } export default And; //# sourceMappingURL=And.d.ts.map