UNPKG

171 BTypeScriptView Raw
1import { HslColor } from '../types/color';
2
3declare function hsl(
4 value: HslColor | number,
5 saturation?: number,
6 lightness?: number,
7): string;
8
9export default hsl;