typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
19 lines (17 loc) • 429 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueryResult = void 0;
/**
* Result object returned by UpdateQueryBuilder execution.
*/
var QueryResult = /** @class */ (function () {
function QueryResult() {
/**
* Rows
*/
this.records = [];
}
return QueryResult;
}());
exports.QueryResult = QueryResult;
//# sourceMappingURL=QueryResult.js.map