UNPKG

@antv/util

Version:

> AntV 底层依赖的工具库,不建议在自己业务中使用。

14 lines (13 loc) 297 B
/** * 将颜色转换到 rgb 的格式 * @param {color} color 颜色 * @return 将颜色转换到 '#ffffff' 的格式 */ declare function toRGBString(color: string): string; /** * export with memoize. * @param color * @returns */ export declare const toRGB: typeof toRGBString; export {};