UNPKG

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