on-codemerge
Version:
A WYSIWYG editor for on-codemerge is a user-friendly interface that allows users to edit and view their code in real time, exactly as it will appear in the final product
19 lines (18 loc) • 546 B
JavaScript
var r = Object.defineProperty;
var a = (t, e, l) => e in t ? r(t, e, { enumerable: !0, configurable: !0, writable: !0, value: l }) : t[e] = l;
var o = (t, e, l) => a(t, typeof e != "symbol" ? e + "" : e, l);
import { TableOperations as i } from "../services/TableOperations.mjs";
class h {
constructor(e, l, s) {
o(this, "table");
o(this, "cell");
o(this, "before");
this.table = e, this.cell = l, this.before = s;
}
execute() {
i.addColumn(this.table, this.cell, this.before);
}
}
export {
h as AddColumnCommand
};