@sequeljs/ast
Version:
A SQL AST manager for JavaScript
11 lines • 391 B
TypeScript
import type Engine from '../interfaces/Engine';
import type FactoryMethods from '../mixins/FactoryMethods';
import type NodeMethods from '../mixins/NodeMethods';
declare class Node {
private readonly __sequelASTUnquotable;
toSQL(engine?: Engine | null | undefined): any;
}
interface Node extends FactoryMethods, NodeMethods {
}
export default Node;
//# sourceMappingURL=Node.d.ts.map