@sequeljs/ast
Version:
A SQL AST manager for JavaScript
18 lines • 913 B
TypeScript
/** @internal */ /** */
import Attribute from '../attributes/Attribute';
import SelectManager from '../managers/SelectManager';
import Table from '../Table';
import Casted from './Casted';
import Node from './Node';
import Quoted from './Quoted';
import SQLLiteral from './SQLLiteral';
declare function buildQuoted(other: Attribute, attribute: any): Attribute;
declare function buildQuoted(other: Node, attribute: any): Node;
declare function buildQuoted(other: Quoted, attribute: any): Quoted;
declare function buildQuoted(other: SQLLiteral, attribute: any): SQLLiteral;
declare function buildQuoted(other: SelectManager, attribute: any): SelectManager;
declare function buildQuoted(other: Table, attribute: any): Table;
declare function buildQuoted(other: any, attribute: Attribute): Casted;
declare function buildQuoted(other: any): Quoted;
export default buildQuoted;
//# sourceMappingURL=buildQuoted.d.ts.map