database-builder
Version:
Library to assist in creating and maintaining SQL commands.
14 lines (13 loc) • 366 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PlanRef = void 0;
var PlanRef = /** @class */ (function () {
function PlanRef(value) {
this.value = value;
}
PlanRef.prototype.result = function () {
return "".concat(this.value);
};
return PlanRef;
}());
exports.PlanRef = PlanRef;