@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
13 lines • 404 B
JavaScript
import { BaseImageEffect } from "./BaseImageEffect";
export class CropEffect extends BaseImageEffect {
constructor(x, y, width, height) {
super();
// ReSharper disable once InconsistentNaming
this.__type = "CropEffect";
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
}
//# sourceMappingURL=CropEffect.js.map