SUndoCommand.js 574 B

1234567891011121314151617181920
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.SUndoCommand = void 0;
  4. var SUndoCommand = (function () {
  5. function SUndoCommand(parent) {
  6. if (parent === void 0) { parent = null; }
  7. this.desc = "undefined";
  8. }
  9. SUndoCommand.prototype.mergeWith = function (command) {
  10. return false;
  11. };
  12. SUndoCommand.prototype.id = function () {
  13. return -1;
  14. };
  15. SUndoCommand.prototype.toString = function () {
  16. return "";
  17. };
  18. return SUndoCommand;
  19. }());
  20. exports.SUndoCommand = SUndoCommand;