tlojs
Version:
The Last One - The last npm package you'll need to install
16 lines (15 loc) • 497 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TableQueryResults = void 0;
require("../array/linq");
var TableQueryResults = /** @class */ (function () {
function TableQueryResults(cells) {
this.cells = cells;
}
TableQueryResults.prototype.exec = function (plugin) {
var instance = new plugin();
return instance.execute(this.cells);
};
return TableQueryResults;
}());
exports.TableQueryResults = TableQueryResults;