UNPKG

@colormate/core

Version:

A modular and efficient color management library for JavaScript and TypeScript applications.

7 lines (6 loc) 267 B
import { Rgb } from '@types_interfaces/ColorTypes'; import { ColorConverter } from '@helpers/ColorConverter'; export declare class RgbToHex extends ColorConverter<Rgb, string> { static convertRgbToHex(rgb: Rgb): string; protected convert(rgb: Rgb): string; }