UNPKG

192 BTypeScriptView Raw
1import type { IRGB } from './interfaces';
2/** Converts HSV components to an RGB color. Does not set the alpha value. */
3export declare function hsv2rgb(h: number, s: number, v: number): IRGB;