@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 • 465 B
JavaScript
import { BaseImageEffect } from "./BaseImageEffect";
export class AutoErasePoint {
}
export class AutoEraseEffect extends BaseImageEffect {
constructor(rawPoints) {
super();
this.points = [];
// ReSharper disable once InconsistentNaming
this.__type = "AutoEraseEffect";
this.points = rawPoints.map(rawValue => Object.assign(new AutoErasePoint(), rawValue));
}
}
//# sourceMappingURL=AutoEraseEffect.js.map