UNPKG

297 BTypeScriptView Raw
1/**
2 * 将颜色转换到 rgb 的格式
3 * @param {color} color 颜色
4 * @return 将颜色转换到 '#ffffff' 的格式
5 */
6declare function toRGBString(color: string): string;
7/**
8 * export with memoize.
9 * @param color
10 * @returns
11 */
12export declare const toRGB: typeof toRGBString;
13export {};