scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
16 lines (15 loc) • 590 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.EAnimationType = void 0;
/**
* Enumeration constants to define the type of animations that a {@link BaseAnimation} represents
*/
var EAnimationType;
(function (EAnimationType) {
EAnimationType["Fade"] = "Fade";
EAnimationType["Scale"] = "Scale";
EAnimationType["Sweep"] = "Sweep";
EAnimationType["Wave"] = "Wave";
EAnimationType["Style"] = "Style";
EAnimationType["Custom"] = "Custom";
})(EAnimationType = exports.EAnimationType || (exports.EAnimationType = {}));
;