UNPKG

162 BTypeScriptView Raw
1import type { IHSV } from './interfaces';
2/** Converts HSL components to an HSV color. */
3export declare function hsl2hsv(h: number, s: number, l: number): IHSV;