UNPKG

277 BTypeScriptView Raw
1declare function curriedSaturateWith1(color: string): string;
2declare function curriedSaturate(
3 amount: number | string,
4): typeof curriedSaturateWith1;
5declare function curriedSaturate(
6 amount: number | string,
7 color: string,
8): string;
9
10export default curriedSaturate;