add hsl() to types/color (#16322)

This commit is contained in:
arogg
2017-05-04 11:48:50 -07:00
committed by Mohamed Hegazy
parent 58496e097b
commit 8ca6422725
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -59,3 +59,4 @@ var chain: Color.Color = color
.opaquer(0)
.rotate(0)
.mix(colorOther, 0)
.hsl();
+1
View File
@@ -85,6 +85,7 @@ declare namespace Color {
opaquer(value: number): Color;
rotate(value: number): Color;
mix(color: Color, value?: number): Color;
hsl(): Color;
}
}