UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

18 lines (16 loc) 365 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.QueryResult = void 0; /** * Result object returned by UpdateQueryBuilder execution. */ class QueryResult { constructor() { /** * Rows */ this.records = []; } } exports.QueryResult = QueryResult; //# sourceMappingURL=QueryResult.js.map