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.

17 lines (16 loc) 481 B
import { Color, IColor } from "./Color"; export interface IProcessColor extends IColor { profile: string; alpha: number; } export declare abstract class ProcessColor extends Color { private _profile; private _alpha; constructor(alpha: number, profile?: string); get alpha(): number; get profile(): string; get isTransparent(): boolean; equals(other: Color): boolean; getData(): IProcessColor; private _validateProfile; }