@sequeljs/ast
Version:
A SQL AST manager for JavaScript
11 lines • 481 B
TypeScript
import ToSQL from './ToSQL';
import type Collector from '../collectors/Collector';
import type Connection from '../interfaces/Connection';
import type SelectCore from '../nodes/SelectCore';
import type Visitor from './Visitor';
export default class WhereSQL extends ToSQL {
private innerVisitor;
constructor(innerVisitor: Visitor, connection: Connection);
protected visitSelectCore(thing: SelectCore, col: Collector): Collector;
}
//# sourceMappingURL=WhereSQL.d.ts.map