UNPKG

database-builder

Version:

Library to assist in creating and maintaining SQL commands.

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