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