UNPKG

pretty-easy-rgb-to-hex

Version:
12 lines (11 loc) 277 B
/** * @description * Check if the value passed is a valid * IRGB object containing red, green, blue, alpha? * properties with values of type string or number * * @export * @param {*} value * @returns {boolean} */ export declare function isRGB(value: any): boolean;