[gm]: Make modulate 2nd and 3rd param optional (#41211)

According to the documentation the second and third option of .modulate() are optional:
http://aheckmann.github.io/gm/docs.html#modulate
This commit is contained in:
Bert Verhelst
2019-12-26 10:46:37 -06:00
committed by Andrew Branch
parent 1ca7af77c0
commit 8cd712adcc
+1 -1
View File
@@ -182,7 +182,7 @@ declare namespace m {
median(radius?: number): State;
minify(factor: number): State;
mode(mode: OperationMode | string): State;
modulate(b: number, s: number, h: number): State;
modulate(b: number, s?: number, h?: number): State;
monitor(): State;
monochrome(): State;
montage(otherImg: string): State;