Update gm.d.ts

Renaming stream to buffer for consistency
This commit is contained in:
Timothy Soehnlin
2016-03-28 09:28:02 -05:00
parent e821f19879
commit 6d218806c8
Vendored
+1 -1
View File
@@ -10,7 +10,7 @@ declare module "gm" {
function m(image: string): m.State;
function m(stream:NodeJS.ReadableStream, image?: string): m.State;
function m(stream:Buffer, image?: string): m.State;
function m(buffer:Buffer, image?: string): m.State;
function m(width:number, height:number, color?:string): m.State;
namespace m {