@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
12 lines • 402 B
JavaScript
import { NotImplementedException } from "@aurigma/design-atoms-model/Exception";
var BaseCommand = /** @class */ (function () {
function BaseCommand(_args) {
this._args = _args;
}
BaseCommand.prototype.execute = function () {
throw new NotImplementedException();
};
return BaseCommand;
}());
export { BaseCommand };
//# sourceMappingURL=BaseCommand.js.map