@aurigma/design-atoms-model
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
14 lines • 402 B
JavaScript
var Watermark = /** @class */ (function () {
function Watermark() {
}
Watermark.prototype.clone = function () {
var clone = new Watermark();
clone.storageId = this.storageId;
clone.width = this.width;
clone.height = this.height;
return clone;
};
return Watermark;
}());
export { Watermark };
//# sourceMappingURL=Watermark.js.map