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) • 540 B
JavaScript
var r = Object.defineProperty;
var a = (t, e, o) => e in t ? r(t, e, { enumerable: !0, configurable: !0, writable: !0, value: o }) : t[e] = o;
var l = (t, e, o) => a(t, typeof e != "symbol" ? e + "" : e, o);
import { TableOperations as i } from "../services/TableOperations.mjs";
class h {
constructor(e, o, s) {
l(this, "table");
l(this, "cell");
l(this, "before");
this.table = e, this.cell = o, this.before = s;
}
execute() {
i.addRow(this.table, this.cell, this.before);
}
}
export {
h as AddRowCommand
};