1 | (function (factory) {
|
2 | if (typeof module === "object" && typeof module.exports === "object") {
|
3 | var v = factory(require, exports);
|
4 | if (v !== undefined) module.exports = v;
|
5 | }
|
6 | else if (typeof define === "function" && define.amd) {
|
7 | define(["require", "exports"], factory);
|
8 | }
|
9 | })(function (require, exports) {
|
10 | "use strict";
|
11 | Object.defineProperty(exports, "__esModule", { value: true });
|
12 | exports.ParticlesInteractorBase = void 0;
|
13 | class ParticlesInteractorBase {
|
14 | constructor(container) {
|
15 | this.container = container;
|
16 | this.type = "particles";
|
17 | }
|
18 | }
|
19 | exports.ParticlesInteractorBase = ParticlesInteractorBase;
|
20 | });
|