1 | declare function curriedSetLightnessWith1(color: string): string;
|
2 | declare function curriedSetLightness(
|
3 | lightness: number | string,
|
4 | ): typeof curriedSetLightnessWith1;
|
5 | declare function curriedSetLightness(
|
6 | lightness: number | string,
|
7 | color: string,
|
8 | ): string;
|
9 |
|
10 | export default curriedSetLightness;
|