UNPKG

database-builder

Version:

Library to assist in creating and maintaining SQL commands.

13 lines (12 loc) 381 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.JoinCompiled = void 0; var JoinCompiled = /** @class */ (function () { function JoinCompiled(params) { if (params === void 0) { params = []; } this.params = params; this.joins = []; } return JoinCompiled; }()); exports.JoinCompiled = JoinCompiled;