"use strict";
|
Object.defineProperty(exports, "__esModule", { value: true });
|
/**
|
* Result object returned by UpdateQueryBuilder execution.
|
*/
|
var UpdateResult = /** @class */ (function () {
|
function UpdateResult() {
|
/**
|
* Contains inserted entity id.
|
* Has entity-like structure (not just column database name and values).
|
*/
|
// identifier: ObjectLiteral[] = [];
|
/**
|
* Generated values returned by a database.
|
* Has entity-like structure (not just column database name and values).
|
*/
|
this.generatedMaps = [];
|
}
|
return UpdateResult;
|
}());
|
exports.UpdateResult = UpdateResult;
|
|
//# sourceMappingURL=UpdateResult.js.map
|