markdown-table-prettify
Version:
Transforms markdown tables to be more readable.
11 lines (10 loc) • 415 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Alignment = void 0;
var Alignment;
(function (Alignment) {
Alignment[Alignment["NotSet"] = 0] = "NotSet";
Alignment[Alignment["Left"] = 1] = "Left";
Alignment[Alignment["Center"] = 2] = "Center";
Alignment[Alignment["Right"] = 3] = "Right";
})(Alignment = exports.Alignment || (exports.Alignment = {}));
;