markdown-table-prettify
Version:
Transforms markdown tables to be more readable.
22 lines (21 loc) • 619 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Row = void 0;
var Row = /** @class */ (function () {
function Row(_cells, _eol) {
this._cells = _cells;
this._eol = _eol;
}
Object.defineProperty(Row.prototype, "cells", {
get: function () { return this._cells; },
enumerable: false,
configurable: true
});
Object.defineProperty(Row.prototype, "EOL", {
get: function () { return this._eol; },
enumerable: false,
configurable: true
});
return Row;
}());
exports.Row = Row;
;