UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

25 lines (23 loc) 749 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UpdateResult = void 0; /** * 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