12 lines
345 B
JavaScript
12 lines
345 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.SplitRate = void 0;
|
|
const tsparticles_engine_1 = require("tsparticles-engine");
|
|
class SplitRate extends tsparticles_engine_1.ValueWithRandom {
|
|
constructor() {
|
|
super();
|
|
this.value = { min: 4, max: 9 };
|
|
}
|
|
}
|
|
exports.SplitRate = SplitRate;
|