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.

10 lines (9 loc) 345 B
import { RgbColor } from "@aurigma/design-atoms-model/Colors"; import { IRgbColorParser } from "./IColorParser"; export declare class RgbColorParser implements IRgbColorParser { private readonly _mappedParsers; parse(colorString: string): RgbColor | null; private _parseHex; private _parseRgb; private _parseRgba; }