konva
Version:
<p align="center"> <img src="https://raw.githubusercontent.com/konvajs/konvajs.github.io/master/apple-touch-icon-180x180.png" alt="Konva logo" height="180" /> </p>
25 lines (24 loc) • 1.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var KonvaNodeEvent;
(function (KonvaNodeEvent) {
KonvaNodeEvent["mouseover"] = "mouseover";
KonvaNodeEvent["mouseout"] = "mouseout";
KonvaNodeEvent["mousemove"] = "mousemove";
KonvaNodeEvent["mouseleave"] = "mouseleave";
KonvaNodeEvent["mouseenter"] = "mouseenter";
KonvaNodeEvent["mousedown"] = "mousedown";
KonvaNodeEvent["mouseup"] = "mouseup";
KonvaNodeEvent["wheel"] = "wheel";
KonvaNodeEvent["contextmenu"] = "contextmenu";
KonvaNodeEvent["click"] = "click";
KonvaNodeEvent["dblclick"] = "dblclick";
KonvaNodeEvent["touchstart"] = "touchstart";
KonvaNodeEvent["touchmove"] = "touchmove";
KonvaNodeEvent["touchend"] = "touchend";
KonvaNodeEvent["tap"] = "tap";
KonvaNodeEvent["dbltap"] = "dbltap";
KonvaNodeEvent["dragstart"] = "dragstart";
KonvaNodeEvent["dragmove"] = "dragmove";
KonvaNodeEvent["dragend"] = "dragend";
})(KonvaNodeEvent = exports.KonvaNodeEvent || (exports.KonvaNodeEvent = {}));