Add type HtmlConvasImage to allow to set a canvas inside an Iimage

This commit is contained in:
Ivan Buttinoni 2017-11-23 09:34:23 +01:00
parent 9f58c3bf48
commit c4fa170d74

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;
}