UNPKG

sqlify

Version:

Yet another SQL query builder for Node.js

7 lines (6 loc) 196 B
/** * implementing SET (INSERT) * https://hiddentao.com/squel/api.html#insert_set */ import { WhereObj } from '../WhereObj'; export declare const set: (chain: any, resource: WhereObj) => void;