Update index.d.ts (#45900)

Correcting the property name to match what we see in the project example (https://github.com/lukechilds/merge-images#nodejs-usage).
This commit is contained in:
Mateus de Nardo 2020-07-06 05:34:18 -03:00 committed by GitHub
parent aecace2b00
commit 83151d6087
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
// Type definitions for merge-images 1.1
// Project: https://github.com/lukechilds/merge-images
// Definitions by: BendingBender <https://github.com/BendingBender>
// Mateus Nardo <https://github.com/mdnm>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export as namespace mergeImages;
@ -21,6 +22,6 @@ declare namespace mergeImages {
width?: number;
height?: number;
Canvas?: any;
Images?: any;
Image?: any;
}
}