UNPKG

sqlify

Version:

Yet another SQL query builder for Node.js

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