1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
- return function () {
- function UndoRedoAPI() {
- _classCallCheck(this, UndoRedoAPI);
- }
-
- UndoRedoAPI.prototype.canUndo = function canUndo() {};
-
- UndoRedoAPI.prototype.canRedo = function canRedo() {};
-
- UndoRedoAPI.prototype.undo = function undo() {};
-
- UndoRedoAPI.prototype.redo = function redo() {};
-
- UndoRedoAPI.prototype.clearStack = function clearStack() {};
- return UndoRedoAPI;
- }();
- });
|