@tsparticles/shape-image
Version:
tsParticles image shape
25 lines (24 loc) • 1.2 kB
JavaScript
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DisposalMethod = void 0;
var DisposalMethod;
(function (DisposalMethod) {
DisposalMethod[DisposalMethod["Replace"] = 0] = "Replace";
DisposalMethod[DisposalMethod["Combine"] = 1] = "Combine";
DisposalMethod[DisposalMethod["RestoreBackground"] = 2] = "RestoreBackground";
DisposalMethod[DisposalMethod["RestorePrevious"] = 3] = "RestorePrevious";
DisposalMethod[DisposalMethod["UndefinedA"] = 4] = "UndefinedA";
DisposalMethod[DisposalMethod["UndefinedB"] = 5] = "UndefinedB";
DisposalMethod[DisposalMethod["UndefinedC"] = 6] = "UndefinedC";
DisposalMethod[DisposalMethod["UndefinedD"] = 7] = "UndefinedD";
})(DisposalMethod || (exports.DisposalMethod = DisposalMethod = {}));
});