UNPKG

132 BTypeScriptView Raw
1export type Color = {
2 r: number;
3 g: number;
4 b: number;
5};
6export declare function parseToRGB(c: string | Color): Color;