UNPKG

@ossareh/typeorm

Version:

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

22 lines (20 loc) 615 B
/** * Result object returned by InsertQueryBuilder execution. */ var InsertResult = /** @class */ (function () { function InsertResult() { /** * Contains inserted entity id. * Has entity-like structure (not just column database name and values). */ this.identifiers = []; /** * Generated values returned by a database. * Has entity-like structure (not just column database name and values). */ this.generatedMaps = []; } return InsertResult; }()); export { InsertResult }; //# sourceMappingURL=InsertResult.js.map