UNPKG

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