@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
20 lines • 534 B
JavaScript
export class CanvasStyle {
constructor() {
this.selection = new SelectionStyleConfig();
this.hover = new HoverStyle();
this.spotlight = new SpotlightStyle();
this.rubberband = new RubberbandStyle();
this.interactiveZones = new InteractiveZonesStyles();
}
}
export class InteractiveZonesStyles {
}
export class SelectionStyleConfig {
}
export class HoverStyle {
}
export class SpotlightStyle {
}
export class RubberbandStyle {
}
//# sourceMappingURL=CanvasStyle.js.map