Merge pull request #298 from ivan-redooc/master

Add type HtmlConvasImage to allow to set a canvas inside the object Konva.Image
This commit is contained in:
Anton Lavrenov 2017-11-24 08:52:10 +07:00 committed by GitHub
commit 558b5f8e3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
konva.d.ts vendored
View File

@ -646,7 +646,7 @@ declare module Konva {
}
interface ImageConfig extends ShapeConfig {
image: HTMLImageElement;
image: HTMLImageElement | HTMLCanvasElement;
crop?: SizeConfig;
}