UNPKG

@aurigma/design-atoms

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

10 lines 284 B
import { NotImplementedException } from "@aurigma/design-atoms-model/Exception"; export class BaseCommand { constructor(_args) { this._args = _args; } execute() { throw new NotImplementedException(); } } //# sourceMappingURL=BaseCommand.js.map