UNPKG

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