UNPKG

162 BTypeScriptView Raw
1import type { IHSV } from './interfaces';
2/** Converts RGB components to an HSV color. */
3export declare function rgb2hsv(r: number, g: number, b: number): IHSV;