1 | declare function curriedMixWith2(otherColor: string): string;
|
2 | declare function curriedMixWith1(color: string): typeof curriedMixWith2;
|
3 | declare function curriedMixWith1(color: string, otherColor: string): string;
|
4 | declare function curriedMix(weight: number | string): typeof curriedMixWith1;
|
5 | declare function curriedMix(
|
6 | weight: number | string,
|
7 | color: string,
|
8 | ): typeof curriedMixWith2;
|
9 | declare function curriedMix(
|
10 | weight: number | string,
|
11 | color: string,
|
12 | otherColor: string,
|
13 | ): string;
|
14 |
|
15 | export default curriedMix;
|