"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