@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.
20 lines (19 loc) • 536 B
TypeScript
import { Color, IColor } from "./Color";
export interface IInk {
name: string;
alternativeColor: IColor;
solidity: number;
}
export declare class Ink {
private _name;
private _alternativeColor;
private _solidity;
constructor(name: string, alternativeColor: Color, solidity?: number);
get name(): string;
get alternativeColor(): Color;
get solidity(): number;
static equals(a: Ink, b: Ink): boolean;
equals(other: Ink): boolean;
clone(): Ink;
getData(): IInk;
}