UNPKG

@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.

11 lines (10 loc) 401 B
import { ModelComponent } from "../Product/ModelComponent"; import { Color } from "./Color"; export declare class Swatch extends ModelComponent { private _color; get color(): Color; set color(value: Color); clone(generateNewIds?: boolean): Swatch; equals(other: Swatch): boolean; protected _copy(source: Swatch, destination: Swatch, generateNewIds: boolean): void; }