UNPKG

@ossareh/typeorm

Version:

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

24 lines (22 loc) 718 B
"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