UNPKG

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