UNPKG

@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 (12 loc) 510 B
import { CmykColor } from "@aurigma/design-atoms-model"; import { ICmykColorParser } from "./IColorParser"; export declare class CmykColorParser implements ICmykColorParser { private static readonly _percentCmykRegex; private static readonly _relativeCmykRegex; private static readonly _deviceCmykRegex; private readonly _mappedParsers; parse(colorString: string): CmykColor | null; private _parsePercentCmyk; private _parseRelativeCmyk; private _parseDeviceCmyk; }