scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
18 lines (17 loc) • 553 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.EDrawingTypes = void 0;
/**
* Gets the type for Brushes, Pens
*/
var EDrawingTypes;
(function (EDrawingTypes) {
/**
* Defines a brush for use with SciChart's WebAssembly WebGL engine
*/
EDrawingTypes["WasmBrush"] = "WasmBrush";
/**
* Defines a pen for use with SciChart's WebAssembly WebGL engine
*/
EDrawingTypes["WasmPen"] = "WasmPen";
})(EDrawingTypes = exports.EDrawingTypes || (exports.EDrawingTypes = {}));
;