core-graphics
Version:
A core library for creating shape-based graphic editors
16 lines (15 loc) • 771 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var EditorEventType = exports.EditorEventType = undefined;
(function (EditorEventType) {
EditorEventType[EditorEventType["Input"] = 0] = "Input";
EditorEventType[EditorEventType["Mode"] = 1] = "Mode";
EditorEventType[EditorEventType["History"] = 2] = "History";
EditorEventType[EditorEventType["Shape"] = 3] = "Shape";
EditorEventType[EditorEventType["GraphicalContext"] = 4] = "GraphicalContext";
EditorEventType[EditorEventType["Grid"] = 5] = "Grid";
EditorEventType[EditorEventType["ContextMenu"] = 6] = "ContextMenu";
EditorEventType[EditorEventType["Viewport"] = 7] = "Viewport";
})(EditorEventType || (exports.EditorEventType = EditorEventType = {}));