UNPKG

tlojs

Version:

The Last One - The last npm package you'll need to install

13 lines (12 loc) 303 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Count = void 0; var Count = /** @class */ (function () { function Count() { } Count.prototype.execute = function (cells) { return cells.length; }; return Count; }()); exports.Count = Count;