UNPKG

260 BTypeScriptView Raw
1declare function curriedDarkenWith1(color: string): string;
2declare function curriedDarken(
3 amount: number | string,
4): typeof curriedDarkenWith1;
5declare function curriedDarken(amount: number | string, color: string): string;
6
7export default curriedDarken;