bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
22 lines • 576 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HQL = void 0;
var HQL = /** @class */ (function () {
function HQL(hql, resultado, records) {
this.hql = hql;
this.resultado = resultado;
this.records = records;
}
HQL.prototype.reset = function () {
this.hql = "";
this.resultado = "";
this.records = 0;
};
HQL.newObject = function () {
var obj = new HQL("", "", 0);
return obj;
};
return HQL;
}());
exports.HQL = HQL;
//# sourceMappingURL=hql.js.map