@delirius/welcard
Version:
WelCard is a lightweight and futuristic welcome card library designed for WhatsApp Bots.
11 lines (10 loc) • 437 B
TypeScript
/**
* Converts RGB color values to their hexadecimal representation.
*
* @param r - The red component of the color (0-255).
* @param g - The green component of the color (0-255).
* @param b - The blue component of the color (0-255).
* @returns A string representing the hexadecimal color value in the format "#RRGGBB".
*/
declare function rgbToHex(r: number, g: number, b: number): Promise<string>;
export { rgbToHex };