UNPKG

sqlify

Version:

Yet another SQL query builder for Node.js

7 lines (6 loc) 198 B
/** * implementing JOIN * https://hiddentao.com/squel/api.html#select_join */ import { JoinClause } from '../JoinClause'; export declare const join: (chain: any, resource: JoinClause[]) => void;