mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-19 13:32:17 +08:00
Merge pull request #14740 from Greg15153/master
Added background to set background color in gm
This commit is contained in:
@@ -78,6 +78,7 @@ gm(src)
|
||||
.authenticate(password)
|
||||
.autoOrient()
|
||||
.backdrop()
|
||||
.background(color)
|
||||
.bitdepth(bits)
|
||||
.blackThreshold(intensity)
|
||||
.blackThreshold(r, g, b)
|
||||
|
||||
1
gm/index.d.ts
vendored
1
gm/index.d.ts
vendored
@@ -108,6 +108,7 @@ declare namespace m {
|
||||
authenticate(password: string): State;
|
||||
autoOrient(): State;
|
||||
backdrop(): State;
|
||||
background(color: string): State;
|
||||
bitdepth(bits: number): State;
|
||||
blackThreshold(intensity: number): State;
|
||||
blackThreshold(red: number, green: number, blue: number, opacity?: number): State;
|
||||
|
||||
Reference in New Issue
Block a user