fix: missing mix color typings

This commit is contained in:
Martin Guillon
2020-12-24 16:41:48 +01:00
parent 75ceedf1ab
commit b6b36cf943

View File

@ -190,4 +190,10 @@ export class Color {
* *
*/ */
public complement(): Color; public complement(): Color;
/**
* returns the color complement
*
*/
public static mix(color1: Color, color2: Color, amount: number): Color;
} }