Merge pull request #8748 from timothysoehnlin/master

Adding Alternate Constructors for GraphicsMagick
This commit is contained in:
Basarat Ali Syed
2016-03-29 11:28:13 +11:00
Vendored
+3
View File
@@ -9,6 +9,9 @@ declare module "gm" {
import stream = require('stream');
function m(image: string): m.State;
function m(stream:NodeJS.ReadableStream, image?: string): m.State;
function m(buffer:Buffer, image?: string): m.State;
function m(width:number, height:number, color?:string): m.State;
namespace m {
export interface ClassOptions {