UNPKG

282 BTypeScriptView Raw
1declare function curriedAdjustHueWith1(color: string): string;
2declare function curriedAdjustHue(
3 degree: number | string,
4): typeof curriedAdjustHueWith1;
5declare function curriedAdjustHue(
6 degree: number | string,
7 color: string,
8): string;
9
10export default curriedAdjustHue;