UNPKG

pretty-easy-hex-to-rgb

Version:

Converts a hex color value to it's coresponding rgb value and returns it in an array like format of red, green, blue color values

13 lines (12 loc) 339 B
/** * @description * Check if the value returns * an array of number values * that represent the RGB color * * @param {string} info * @param {string} value * @param {number[]} equalityCheck * @returns {*} */ export declare function validHEXValue_returnsString(info: string, equalityCheck: Array<number>, value: string): void;