mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Missing montage method (#39109)
* Missing montage method * add test for montage * Update gm-tests.ts
This commit is contained in:
parent
3a0b11664a
commit
3cdc2eb4d8
@ -178,6 +178,7 @@ gm(src)
|
||||
.modulate(b, s, h)
|
||||
.monitor()
|
||||
.monochrome()
|
||||
.montage(src)
|
||||
.morph(src, dest)
|
||||
.morph(src, dest, (err, stdout, stderr, cmd) => {
|
||||
})
|
||||
|
||||
1
types/gm/index.d.ts
vendored
1
types/gm/index.d.ts
vendored
@ -184,6 +184,7 @@ declare namespace m {
|
||||
modulate(b: number, s: number, h: number): State;
|
||||
monitor(): State;
|
||||
monochrome(): State;
|
||||
montage(otherImg: string): State;
|
||||
morph(otherImg: string | string[], outName: string, callback?: WriteCallback): State;
|
||||
mosaic(): State;
|
||||
motionBlur(radius: number, sigma?: number, angle?: number): State;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user