1234567891011121314151617181920 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.SUndoCommand = void 0;
- var SUndoCommand = (function () {
- function SUndoCommand(parent) {
- if (parent === void 0) { parent = null; }
- this.desc = "undefined";
- }
- SUndoCommand.prototype.mergeWith = function (command) {
- return false;
- };
- SUndoCommand.prototype.id = function () {
- return -1;
- };
- SUndoCommand.prototype.toString = function () {
- return "";
- };
- return SUndoCommand;
- }());
- exports.SUndoCommand = SUndoCommand;
|