tsparticles 1.34.1 → 1.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/167.js +1775 -0
- package/Core/Canvas.d.ts +0 -1
- package/Core/Canvas.js +37 -56
- package/Core/Container.js +66 -81
- package/Core/Interfaces/IParticle.d.ts +11 -15
- package/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
- package/Core/Interfaces/IParticleRetinaProps.js +2 -0
- package/Core/Interfaces/IParticleRoll.d.ts +9 -0
- package/Core/Interfaces/IParticleRoll.js +2 -0
- package/Core/Interfaces/IParticleUpdater.d.ts +3 -0
- package/Core/Interfaces/IParticleWobble.d.ts +4 -0
- package/Core/Interfaces/IParticleWobble.js +2 -0
- package/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
- package/Core/Interfaces/IParticlesFrequencies.js +2 -0
- package/Core/Interfaces/index.d.ts +3 -2
- package/Core/Interfaces/index.js +3 -2
- package/Core/Loader.js +66 -83
- package/Core/Particle/Mover.js +14 -13
- package/Core/Particle/Vector.js +2 -2
- package/Core/Particle.d.ts +16 -28
- package/Core/Particle.js +76 -280
- package/Core/Particles.d.ts +2 -3
- package/Core/Particles.js +16 -14
- package/Core/Retina.js +12 -14
- package/Enums/Modes/RollMode.d.ts +5 -0
- package/Enums/Modes/RollMode.js +9 -0
- package/Enums/Modes/index.d.ts +1 -0
- package/Enums/Modes/index.js +1 -0
- package/Interactions/External/Attract/Attractor.js +5 -5
- package/Interactions/External/Bounce/Bouncer.js +7 -7
- package/Interactions/External/Bubble/Bubbler.js +21 -20
- package/Interactions/External/Connect/Connector.js +1 -1
- package/Interactions/External/Grab/Grabber.js +4 -4
- package/Interactions/External/Repulse/Repulser.js +8 -8
- package/Interactions/External/Trail/TrailMaker.js +2 -2
- package/Interactions/Particles/Attract/Attractor.js +2 -2
- package/Interactions/Particles/Collisions/Collider.js +4 -4
- package/Interactions/Particles/Links/LinkInstance.js +11 -11
- package/Interactions/Particles/Links/Linker.js +6 -6
- package/Interactions/Particles/Links/index.js +1 -1
- package/Options/Classes/AnimatableColor.d.ts +2 -2
- package/Options/Classes/AnimatableColor.js +8 -2
- package/Options/Classes/AnimatableGradient.js +1 -1
- package/Options/Classes/ColorAnimation.js +1 -1
- package/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
- package/Options/Classes/Interactivity/Modes/Trail.js +1 -1
- package/Options/Classes/ManualParticle.js +1 -1
- package/Options/Classes/Options.d.ts +4 -1
- package/Options/Classes/Options.js +25 -12
- package/Options/Classes/OptionsColor.d.ts +1 -1
- package/Options/Classes/OptionsColor.js +2 -1
- package/Options/Classes/Particles/Destroy/Split.js +1 -1
- package/Options/Classes/Particles/Move/Move.js +3 -3
- package/Options/Classes/Particles/Move/Path/Path.js +1 -1
- package/Options/Classes/Particles/Move/Spin.js +2 -2
- package/Options/Classes/Particles/Opacity/Opacity.js +1 -1
- package/Options/Classes/Particles/ParticlesOptions.js +2 -2
- package/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
- package/Options/Classes/Particles/Roll/Roll.js +6 -1
- package/Options/Classes/Particles/Shape/Shape.js +5 -5
- package/Options/Classes/Particles/Size/Size.js +1 -1
- package/Options/Classes/Particles/Wobble/Wobble.js +2 -2
- package/Options/Classes/Responsive.js +1 -1
- package/Options/Classes/Theme/Theme.js +1 -1
- package/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
- package/Options/Classes/Theme/ThemeDefault.js +7 -3
- package/Options/Classes/ValueWithRandom.js +1 -1
- package/Options/Interfaces/IOptions.d.ts +3 -3
- package/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
- package/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
- package/Plugins/Absorbers/AbsorberInstance.js +9 -8
- package/Plugins/Absorbers/Absorbers.js +2 -2
- package/Plugins/Absorbers/plugin.js +1 -1
- package/Plugins/Emitters/EmitterInstance.js +10 -10
- package/Plugins/Emitters/Emitters.js +3 -3
- package/Plugins/Emitters/Options/Classes/Emitter.js +1 -1
- package/Plugins/Emitters/Options/Classes/EmitterRate.js +2 -2
- package/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
- package/Plugins/Emitters/plugin.js +1 -1
- package/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
- package/Plugins/PolygonMask/Options/Classes/DrawStroke.js +1 -1
- package/Plugins/PolygonMask/Options/Classes/PolygonMask.js +1 -1
- package/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
- package/Plugins/PolygonMask/PolygonMaskInstance.js +53 -178
- package/Plugins/PolygonMask/pathseg.d.ts +0 -0
- package/Plugins/PolygonMask/pathseg.js +1532 -0
- package/Plugins/PolygonMask/plugin.d.ts +1 -1
- package/Plugins/PolygonMask/plugin.js +23 -1
- package/Plugins/PolygonMask/types.d.ts +8 -0
- package/Plugins/PolygonMask/types.js +2 -0
- package/Plugins/PolygonMask/utils.d.ts +11 -0
- package/Plugins/PolygonMask/utils.js +121 -0
- package/README.md +0 -6
- package/Shapes/Image/ImageDrawer.js +68 -83
- package/Shapes/Image/Utils.js +19 -30
- package/Shapes/Text/TextDrawer.js +15 -26
- package/Updaters/Angle/AngleUpdater.d.ts +4 -0
- package/Updaters/Angle/AngleUpdater.js +46 -10
- package/Updaters/Angle/index.js +1 -1
- package/Updaters/Color/ColorUpdater.d.ts +4 -0
- package/Updaters/Color/ColorUpdater.js +10 -1
- package/Updaters/Color/index.js +1 -1
- package/Updaters/Life/LifeUpdater.d.ts +1 -0
- package/Updaters/Life/LifeUpdater.js +7 -5
- package/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
- package/Updaters/Opacity/OpacityUpdater.js +46 -1
- package/Updaters/Opacity/index.js +1 -1
- package/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
- package/Updaters/OutModes/OutOfCanvasUpdater.js +9 -7
- package/Updaters/OutModes/Utils.js +2 -2
- package/Updaters/Roll/RollUpdater.d.ts +1 -0
- package/Updaters/Roll/RollUpdater.js +42 -6
- package/Updaters/Size/SizeUpdater.d.ts +1 -0
- package/Updaters/Size/SizeUpdater.js +3 -1
- package/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
- package/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
- package/Updaters/StrokeColor/index.js +1 -1
- package/Updaters/Tilt/TiltUpdater.d.ts +4 -0
- package/Updaters/Tilt/TiltUpdater.js +37 -0
- package/Updaters/Tilt/index.js +1 -1
- package/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
- package/Updaters/Wobble/WobbleUpdater.js +31 -11
- package/Updaters/Wobble/index.js +1 -1
- package/Utils/CanvasUtils.d.ts +2 -0
- package/Utils/CanvasUtils.js +36 -24
- package/Utils/Circle.js +1 -1
- package/Utils/ColorUtils.js +7 -7
- package/Utils/EventListeners.d.ts +2 -0
- package/Utils/EventListeners.js +16 -1
- package/Utils/NumberUtils.js +4 -4
- package/Utils/QuadTree.js +1 -1
- package/Utils/Utils.d.ts +1 -27
- package/Utils/Utils.js +11 -22
- package/browser/Core/Canvas.d.ts +0 -1
- package/browser/Core/Canvas.js +17 -36
- package/browser/Core/Container.js +64 -79
- package/browser/Core/Interfaces/IParticle.d.ts +11 -15
- package/browser/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
- package/browser/Core/Interfaces/IParticleRetinaProps.js +1 -0
- package/browser/Core/Interfaces/IParticleRoll.d.ts +9 -0
- package/browser/Core/Interfaces/IParticleRoll.js +1 -0
- package/browser/Core/Interfaces/IParticleUpdater.d.ts +3 -0
- package/browser/Core/Interfaces/IParticleWobble.d.ts +4 -0
- package/browser/Core/Interfaces/IParticleWobble.js +1 -0
- package/browser/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
- package/browser/Core/Interfaces/IParticlesFrequencies.js +1 -0
- package/browser/Core/Interfaces/index.d.ts +3 -2
- package/browser/Core/Interfaces/index.js +3 -2
- package/browser/Core/Loader.js +66 -83
- package/browser/Core/Particle/Mover.js +8 -7
- package/browser/Core/Particle/Vector.js +2 -2
- package/browser/Core/Particle.d.ts +16 -28
- package/browser/Core/Particle.js +60 -264
- package/browser/Core/Particles.d.ts +2 -3
- package/browser/Core/Particles.js +11 -9
- package/browser/Core/Retina.js +10 -12
- package/browser/Enums/Modes/RollMode.d.ts +5 -0
- package/browser/Enums/Modes/RollMode.js +6 -0
- package/browser/Enums/Modes/index.d.ts +1 -0
- package/browser/Enums/Modes/index.js +1 -0
- package/browser/Interactions/External/Bounce/Bouncer.js +1 -1
- package/browser/Interactions/External/Bubble/Bubbler.js +4 -3
- package/browser/Interactions/External/Repulse/Repulser.js +1 -1
- package/browser/Interactions/Particles/Attract/Attractor.js +1 -1
- package/browser/Interactions/Particles/Links/LinkInstance.js +2 -2
- package/browser/Interactions/Particles/Links/Linker.js +1 -1
- package/browser/Options/Classes/AnimatableColor.d.ts +2 -2
- package/browser/Options/Classes/AnimatableColor.js +8 -2
- package/browser/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
- package/browser/Options/Classes/Options.d.ts +4 -1
- package/browser/Options/Classes/Options.js +25 -12
- package/browser/Options/Classes/OptionsColor.d.ts +1 -1
- package/browser/Options/Classes/OptionsColor.js +2 -1
- package/browser/Options/Classes/Particles/ParticlesOptions.js +1 -1
- package/browser/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
- package/browser/Options/Classes/Particles/Roll/Roll.js +5 -0
- package/browser/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
- package/browser/Options/Classes/Theme/ThemeDefault.js +6 -2
- package/browser/Options/Interfaces/IOptions.d.ts +3 -3
- package/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
- package/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
- package/browser/Plugins/Absorbers/AbsorberInstance.js +2 -1
- package/browser/Plugins/Emitters/EmitterInstance.js +1 -1
- package/browser/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
- package/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
- package/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
- package/browser/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
- package/browser/Plugins/PolygonMask/pathseg.d.ts +0 -0
- package/browser/Plugins/PolygonMask/pathseg.js +1532 -0
- package/browser/Plugins/PolygonMask/plugin.d.ts +1 -1
- package/browser/Plugins/PolygonMask/plugin.js +4 -1
- package/browser/Plugins/PolygonMask/types.d.ts +8 -0
- package/browser/Plugins/PolygonMask/types.js +1 -0
- package/browser/Plugins/PolygonMask/utils.d.ts +11 -0
- package/browser/Plugins/PolygonMask/utils.js +113 -0
- package/browser/Shapes/Image/ImageDrawer.js +67 -82
- package/browser/Shapes/Image/Utils.js +17 -28
- package/browser/Shapes/Text/TextDrawer.js +14 -25
- package/browser/Updaters/Angle/AngleUpdater.d.ts +4 -0
- package/browser/Updaters/Angle/AngleUpdater.js +47 -11
- package/browser/Updaters/Angle/index.js +1 -1
- package/browser/Updaters/Color/ColorUpdater.d.ts +4 -0
- package/browser/Updaters/Color/ColorUpdater.js +10 -1
- package/browser/Updaters/Color/index.js +1 -1
- package/browser/Updaters/Life/LifeUpdater.d.ts +1 -0
- package/browser/Updaters/Life/LifeUpdater.js +2 -0
- package/browser/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
- package/browser/Updaters/Opacity/OpacityUpdater.js +47 -2
- package/browser/Updaters/Opacity/index.js +1 -1
- package/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
- package/browser/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
- package/browser/Updaters/Roll/RollUpdater.d.ts +1 -0
- package/browser/Updaters/Roll/RollUpdater.js +42 -6
- package/browser/Updaters/Size/SizeUpdater.d.ts +1 -0
- package/browser/Updaters/Size/SizeUpdater.js +2 -0
- package/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
- package/browser/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
- package/browser/Updaters/StrokeColor/index.js +1 -1
- package/browser/Updaters/Tilt/TiltUpdater.d.ts +4 -0
- package/browser/Updaters/Tilt/TiltUpdater.js +38 -1
- package/browser/Updaters/Tilt/index.js +1 -1
- package/browser/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
- package/browser/Updaters/Wobble/WobbleUpdater.js +31 -11
- package/browser/Updaters/Wobble/index.js +1 -1
- package/browser/Utils/CanvasUtils.d.ts +2 -0
- package/browser/Utils/CanvasUtils.js +19 -8
- package/browser/Utils/EventListeners.d.ts +2 -0
- package/browser/Utils/EventListeners.js +15 -0
- package/browser/Utils/NumberUtils.js +4 -4
- package/browser/Utils/Utils.d.ts +1 -27
- package/browser/Utils/Utils.js +6 -17
- package/browser/index.d.ts +5 -5
- package/browser/index.js +5 -5
- package/browser/index.slim.d.ts +5 -5
- package/browser/index.slim.js +5 -5
- package/browser/main.js +8 -25
- package/esm/Core/Canvas.d.ts +0 -1
- package/esm/Core/Canvas.js +17 -36
- package/esm/Core/Container.js +64 -79
- package/esm/Core/Interfaces/IParticle.d.ts +11 -15
- package/esm/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
- package/esm/Core/Interfaces/IParticleRetinaProps.js +1 -0
- package/esm/Core/Interfaces/IParticleRoll.d.ts +9 -0
- package/esm/Core/Interfaces/IParticleRoll.js +1 -0
- package/esm/Core/Interfaces/IParticleUpdater.d.ts +3 -0
- package/esm/Core/Interfaces/IParticleWobble.d.ts +4 -0
- package/esm/Core/Interfaces/IParticleWobble.js +1 -0
- package/esm/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
- package/esm/Core/Interfaces/IParticlesFrequencies.js +1 -0
- package/esm/Core/Interfaces/index.d.ts +3 -2
- package/esm/Core/Interfaces/index.js +3 -2
- package/esm/Core/Loader.js +66 -83
- package/esm/Core/Particle/Mover.js +8 -7
- package/esm/Core/Particle/Vector.js +2 -2
- package/esm/Core/Particle.d.ts +16 -28
- package/esm/Core/Particle.js +60 -264
- package/esm/Core/Particles.d.ts +2 -3
- package/esm/Core/Particles.js +11 -9
- package/esm/Core/Retina.js +10 -12
- package/esm/Enums/Modes/RollMode.d.ts +5 -0
- package/esm/Enums/Modes/RollMode.js +6 -0
- package/esm/Enums/Modes/index.d.ts +1 -0
- package/esm/Enums/Modes/index.js +1 -0
- package/esm/Interactions/External/Bounce/Bouncer.js +1 -1
- package/esm/Interactions/External/Bubble/Bubbler.js +4 -3
- package/esm/Interactions/External/Repulse/Repulser.js +1 -1
- package/esm/Interactions/Particles/Attract/Attractor.js +1 -1
- package/esm/Interactions/Particles/Links/LinkInstance.js +2 -2
- package/esm/Interactions/Particles/Links/Linker.js +1 -1
- package/esm/Options/Classes/AnimatableColor.d.ts +2 -2
- package/esm/Options/Classes/AnimatableColor.js +8 -2
- package/esm/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
- package/esm/Options/Classes/Options.d.ts +4 -1
- package/esm/Options/Classes/Options.js +25 -12
- package/esm/Options/Classes/OptionsColor.d.ts +1 -1
- package/esm/Options/Classes/OptionsColor.js +2 -1
- package/esm/Options/Classes/Particles/ParticlesOptions.js +1 -1
- package/esm/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
- package/esm/Options/Classes/Particles/Roll/Roll.js +5 -0
- package/esm/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
- package/esm/Options/Classes/Theme/ThemeDefault.js +6 -2
- package/esm/Options/Interfaces/IOptions.d.ts +3 -3
- package/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
- package/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
- package/esm/Plugins/Absorbers/AbsorberInstance.js +2 -1
- package/esm/Plugins/Emitters/EmitterInstance.js +1 -1
- package/esm/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
- package/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
- package/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
- package/esm/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
- package/esm/Plugins/PolygonMask/pathseg.d.ts +0 -0
- package/esm/Plugins/PolygonMask/pathseg.js +1532 -0
- package/esm/Plugins/PolygonMask/plugin.d.ts +1 -1
- package/esm/Plugins/PolygonMask/plugin.js +4 -1
- package/esm/Plugins/PolygonMask/types.d.ts +8 -0
- package/esm/Plugins/PolygonMask/types.js +1 -0
- package/esm/Plugins/PolygonMask/utils.d.ts +11 -0
- package/esm/Plugins/PolygonMask/utils.js +113 -0
- package/esm/Shapes/Image/ImageDrawer.js +67 -82
- package/esm/Shapes/Image/Utils.js +17 -28
- package/esm/Shapes/Text/TextDrawer.js +14 -25
- package/esm/Updaters/Angle/AngleUpdater.d.ts +4 -0
- package/esm/Updaters/Angle/AngleUpdater.js +47 -11
- package/esm/Updaters/Angle/index.js +1 -1
- package/esm/Updaters/Color/ColorUpdater.d.ts +4 -0
- package/esm/Updaters/Color/ColorUpdater.js +10 -1
- package/esm/Updaters/Color/index.js +1 -1
- package/esm/Updaters/Life/LifeUpdater.d.ts +1 -0
- package/esm/Updaters/Life/LifeUpdater.js +2 -0
- package/esm/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
- package/esm/Updaters/Opacity/OpacityUpdater.js +47 -2
- package/esm/Updaters/Opacity/index.js +1 -1
- package/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
- package/esm/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
- package/esm/Updaters/Roll/RollUpdater.d.ts +1 -0
- package/esm/Updaters/Roll/RollUpdater.js +42 -6
- package/esm/Updaters/Size/SizeUpdater.d.ts +1 -0
- package/esm/Updaters/Size/SizeUpdater.js +2 -0
- package/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
- package/esm/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
- package/esm/Updaters/StrokeColor/index.js +1 -1
- package/esm/Updaters/Tilt/TiltUpdater.d.ts +4 -0
- package/esm/Updaters/Tilt/TiltUpdater.js +38 -1
- package/esm/Updaters/Tilt/index.js +1 -1
- package/esm/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
- package/esm/Updaters/Wobble/WobbleUpdater.js +31 -11
- package/esm/Updaters/Wobble/index.js +1 -1
- package/esm/Utils/CanvasUtils.d.ts +2 -0
- package/esm/Utils/CanvasUtils.js +19 -8
- package/esm/Utils/EventListeners.d.ts +2 -0
- package/esm/Utils/EventListeners.js +15 -0
- package/esm/Utils/NumberUtils.js +4 -4
- package/esm/Utils/Utils.d.ts +1 -27
- package/esm/Utils/Utils.js +6 -17
- package/esm/index.d.ts +5 -5
- package/esm/index.js +5 -5
- package/esm/index.slim.d.ts +5 -5
- package/esm/index.slim.js +5 -5
- package/esm/main.js +8 -25
- package/full.js +4 -4
- package/index.d.ts +5 -5
- package/index.js +7 -23
- package/index.slim.d.ts +5 -5
- package/index.slim.js +7 -23
- package/main.js +8 -25
- package/package.json +1 -4
- package/report.html +2 -2
- package/report.slim.html +2 -2
- package/slim.js +27 -27
- package/tsparticles.js +1139 -1132
- package/tsparticles.min.js +2 -2
- package/tsparticles.slim.js +830 -1035
- package/tsparticles.slim.min.js +2 -2
- package/ts3.4/Core/Canvas.d.ts +0 -36
- package/ts3.4/Core/Container.d.ts +0 -64
- package/ts3.4/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.4/Core/FrameManager.d.ts +0 -6
- package/ts3.4/Core/InteractionManager.d.ts +0 -11
- package/ts3.4/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.4/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.4/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.4/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.4/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.4/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.4/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.4/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.4/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.4/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.4/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.4/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.4/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.4/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.4/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.4/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.4/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.4/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.4/Core/Interfaces/index.d.ts +0 -33
- package/ts3.4/Core/Loader.d.ts +0 -14
- package/ts3.4/Core/Particle/Mover.d.ts +0 -13
- package/ts3.4/Core/Particle/Vector.d.ts +0 -27
- package/ts3.4/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.4/Core/Particle.d.ts +0 -84
- package/ts3.4/Core/Particles.d.ts +0 -45
- package/ts3.4/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.4/Core/Retina.d.ts +0 -26
- package/ts3.4/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.4/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.4/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.4/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.4/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.4/Enums/Directions/index.d.ts +0 -4
- package/ts3.4/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.4/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.4/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.4/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.4/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.4/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.4/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.4/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.4/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.4/Enums/Modes/index.d.ts +0 -8
- package/ts3.4/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.4/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.4/Enums/Types/DivType.d.ts +0 -4
- package/ts3.4/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.4/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.4/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.4/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.4/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.4/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.4/Enums/Types/index.d.ts +0 -9
- package/ts3.4/Enums/index.d.ts +0 -5
- package/ts3.4/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.4/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.4/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.4/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.4/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.4/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.4/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.4/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.4/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.4/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.4/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.4/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.4/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.4/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.4/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.4/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.4/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.4/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.4/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.4/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.4/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.4/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.4/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.4/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.4/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.4/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.4/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.4/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.4/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.4/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.4/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
- package/ts3.4/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
- package/ts3.4/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.4/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
- package/ts3.4/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.4/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.4/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.4/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.4/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
- package/ts3.4/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.4/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
- package/ts3.4/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.4/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.4/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.4/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
- package/ts3.4/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
- package/ts3.4/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.4/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.4/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
- package/ts3.4/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.4/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.4/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.4/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.4/Options/Classes/Options.d.ts +0 -40
- package/ts3.4/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.4/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.4/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.4/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Move/Attract.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Move/Move.d.ts +0 -39
- package/ts3.4/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.4/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Number/Density.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.4/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.4/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
- package/ts3.4/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.4/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.4/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
- package/ts3.4/Options/Classes/Particles/Size/Size.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.4/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.4/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.4/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.4/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.4/Options/Classes/Random.d.ts +0 -9
- package/ts3.4/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.4/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.4/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.4/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.4/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.4/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.4/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.4/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.4/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.4/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.4/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.4/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.4/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.4/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.4/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.4/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.4/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.4/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.4/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.4/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.4/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.4/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.4/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.4/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.4/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.4/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.4/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.4/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.4/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.4/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.4/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.4/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.4/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.4/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.4/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.4/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.4/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.4/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.4/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.4/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.4/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.4/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.4/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.4/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.4/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.4/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.4/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.4/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.4/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.4/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.4/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.4/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.4/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.4/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
- package/ts3.4/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.4/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.4/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.4/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.4/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.4/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.4/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.4/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Circle/index.d.ts +0 -2
- package/ts3.4/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.4/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.4/Shapes/Image/index.d.ts +0 -2
- package/ts3.4/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Line/index.d.ts +0 -2
- package/ts3.4/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.4/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.4/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.4/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.4/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Square/index.d.ts +0 -2
- package/ts3.4/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.4/Shapes/Star/index.d.ts +0 -2
- package/ts3.4/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.4/Shapes/Text/index.d.ts +0 -2
- package/ts3.4/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.4/Types/PathOptions.d.ts +0 -3
- package/ts3.4/Types/RangeValue.d.ts +0 -2
- package/ts3.4/Types/RecursivePartial.d.ts +0 -3
- package/ts3.4/Types/ShapeData.d.ts +0 -5
- package/ts3.4/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.4/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.4/Types/index.d.ts +0 -6
- package/ts3.4/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Angle/index.d.ts +0 -2
- package/ts3.4/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Color/index.d.ts +0 -2
- package/ts3.4/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.4/Updaters/Life/index.d.ts +0 -2
- package/ts3.4/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.4/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.4/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.4/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.4/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.4/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Roll/index.d.ts +0 -2
- package/ts3.4/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Size/index.d.ts +0 -2
- package/ts3.4/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.4/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.4/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.4/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.4/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.4/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.4/Utils/Circle.d.ts +0 -8
- package/ts3.4/Utils/CircleWarp.d.ts +0 -10
- package/ts3.4/Utils/ColorUtils.d.ts +0 -26
- package/ts3.4/Utils/Constants.d.ts +0 -18
- package/ts3.4/Utils/EventListeners.d.ts +0 -30
- package/ts3.4/Utils/NumberUtils.d.ts +0 -23
- package/ts3.4/Utils/Plugins.d.ts +0 -22
- package/ts3.4/Utils/Point.d.ts +0 -7
- package/ts3.4/Utils/QuadTree.d.ts +0 -23
- package/ts3.4/Utils/Range.d.ts +0 -7
- package/ts3.4/Utils/Rectangle.d.ts +0 -9
- package/ts3.4/Utils/Utils.d.ts +0 -65
- package/ts3.4/Utils/index.d.ts +0 -13
- package/ts3.4/browser/Core/Canvas.d.ts +0 -36
- package/ts3.4/browser/Core/Container.d.ts +0 -64
- package/ts3.4/browser/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.4/browser/Core/FrameManager.d.ts +0 -6
- package/ts3.4/browser/Core/InteractionManager.d.ts +0 -11
- package/ts3.4/browser/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.4/browser/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.4/browser/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.4/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.4/browser/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.4/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.4/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.4/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.4/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.4/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.4/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.4/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.4/browser/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.4/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.4/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.4/browser/Core/Interfaces/index.d.ts +0 -33
- package/ts3.4/browser/Core/Loader.d.ts +0 -14
- package/ts3.4/browser/Core/Particle/Mover.d.ts +0 -13
- package/ts3.4/browser/Core/Particle/Vector.d.ts +0 -27
- package/ts3.4/browser/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.4/browser/Core/Particle.d.ts +0 -84
- package/ts3.4/browser/Core/Particles.d.ts +0 -45
- package/ts3.4/browser/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.4/browser/Core/Retina.d.ts +0 -26
- package/ts3.4/browser/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.4/browser/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.4/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.4/browser/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.4/browser/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.4/browser/Enums/Directions/index.d.ts +0 -4
- package/ts3.4/browser/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.4/browser/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.4/browser/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.4/browser/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.4/browser/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.4/browser/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.4/browser/Enums/Modes/index.d.ts +0 -8
- package/ts3.4/browser/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.4/browser/Enums/Types/DivType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.4/browser/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.4/browser/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.4/browser/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.4/browser/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.4/browser/Enums/Types/index.d.ts +0 -9
- package/ts3.4/browser/Enums/index.d.ts +0 -5
- package/ts3.4/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.4/browser/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.4/browser/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.4/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.4/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.4/browser/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.4/browser/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.4/browser/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.4/browser/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.4/browser/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.4/browser/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.4/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.4/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.4/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.4/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.4/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.4/browser/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.4/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.4/browser/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.4/browser/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
- package/ts3.4/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
- package/ts3.4/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Options.d.ts +0 -40
- package/ts3.4/browser/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.4/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Move/Move.d.ts +0 -39
- package/ts3.4/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.4/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Number/Density.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.4/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.4/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
- package/ts3.4/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.4/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
- package/ts3.4/browser/Options/Classes/Particles/Size/Size.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.4/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.4/browser/Options/Classes/Random.d.ts +0 -9
- package/ts3.4/browser/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.4/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.4/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.4/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.4/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.4/browser/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.4/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.4/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.4/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.4/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.4/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.4/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.4/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.4/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.4/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.4/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.4/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.4/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.4/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.4/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.4/browser/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.4/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.4/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.4/browser/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.4/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.4/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.4/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.4/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.4/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.4/browser/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.4/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.4/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.4/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.4/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.4/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.4/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.4/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.4/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Circle/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.4/browser/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.4/browser/Shapes/Image/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Line/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.4/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.4/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.4/browser/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.4/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Square/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.4/browser/Shapes/Star/index.d.ts +0 -2
- package/ts3.4/browser/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.4/browser/Shapes/Text/index.d.ts +0 -2
- package/ts3.4/browser/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.4/browser/Types/PathOptions.d.ts +0 -3
- package/ts3.4/browser/Types/RangeValue.d.ts +0 -2
- package/ts3.4/browser/Types/RecursivePartial.d.ts +0 -3
- package/ts3.4/browser/Types/ShapeData.d.ts +0 -5
- package/ts3.4/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.4/browser/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.4/browser/Types/index.d.ts +0 -6
- package/ts3.4/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Angle/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Color/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.4/browser/Updaters/Life/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.4/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.4/browser/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.4/browser/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Roll/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Size/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.4/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.4/browser/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.4/browser/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.4/browser/Utils/Circle.d.ts +0 -8
- package/ts3.4/browser/Utils/CircleWarp.d.ts +0 -10
- package/ts3.4/browser/Utils/ColorUtils.d.ts +0 -26
- package/ts3.4/browser/Utils/Constants.d.ts +0 -18
- package/ts3.4/browser/Utils/EventListeners.d.ts +0 -30
- package/ts3.4/browser/Utils/NumberUtils.d.ts +0 -23
- package/ts3.4/browser/Utils/Plugins.d.ts +0 -22
- package/ts3.4/browser/Utils/Point.d.ts +0 -7
- package/ts3.4/browser/Utils/QuadTree.d.ts +0 -23
- package/ts3.4/browser/Utils/Range.d.ts +0 -7
- package/ts3.4/browser/Utils/Rectangle.d.ts +0 -9
- package/ts3.4/browser/Utils/Utils.d.ts +0 -65
- package/ts3.4/browser/Utils/index.d.ts +0 -13
- package/ts3.4/browser/full.d.ts +0 -2
- package/ts3.4/browser/index.d.ts +0 -31
- package/ts3.4/browser/index.slim.d.ts +0 -25
- package/ts3.4/browser/main.d.ts +0 -24
- package/ts3.4/browser/pjs.d.ts +0 -14
- package/ts3.4/browser/slim.d.ts +0 -2
- package/ts3.4/esm/Core/Canvas.d.ts +0 -36
- package/ts3.4/esm/Core/Container.d.ts +0 -64
- package/ts3.4/esm/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.4/esm/Core/FrameManager.d.ts +0 -6
- package/ts3.4/esm/Core/InteractionManager.d.ts +0 -11
- package/ts3.4/esm/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.4/esm/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.4/esm/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.4/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.4/esm/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.4/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.4/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.4/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.4/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.4/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.4/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.4/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.4/esm/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.4/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.4/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.4/esm/Core/Interfaces/index.d.ts +0 -33
- package/ts3.4/esm/Core/Loader.d.ts +0 -14
- package/ts3.4/esm/Core/Particle/Mover.d.ts +0 -13
- package/ts3.4/esm/Core/Particle/Vector.d.ts +0 -27
- package/ts3.4/esm/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.4/esm/Core/Particle.d.ts +0 -84
- package/ts3.4/esm/Core/Particles.d.ts +0 -45
- package/ts3.4/esm/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.4/esm/Core/Retina.d.ts +0 -26
- package/ts3.4/esm/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.4/esm/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.4/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.4/esm/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.4/esm/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.4/esm/Enums/Directions/index.d.ts +0 -4
- package/ts3.4/esm/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.4/esm/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.4/esm/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.4/esm/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.4/esm/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.4/esm/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.4/esm/Enums/Modes/index.d.ts +0 -8
- package/ts3.4/esm/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.4/esm/Enums/Types/DivType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.4/esm/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.4/esm/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.4/esm/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.4/esm/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.4/esm/Enums/Types/index.d.ts +0 -9
- package/ts3.4/esm/Enums/index.d.ts +0 -5
- package/ts3.4/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.4/esm/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.4/esm/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.4/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.4/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.4/esm/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.4/esm/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.4/esm/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.4/esm/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.4/esm/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.4/esm/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.4/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.4/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.4/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.4/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.4/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.4/esm/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.4/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.4/esm/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.4/esm/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
- package/ts3.4/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
- package/ts3.4/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Options.d.ts +0 -40
- package/ts3.4/esm/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.4/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Move/Move.d.ts +0 -39
- package/ts3.4/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.4/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Number/Density.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.4/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.4/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
- package/ts3.4/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.4/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
- package/ts3.4/esm/Options/Classes/Particles/Size/Size.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.4/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.4/esm/Options/Classes/Random.d.ts +0 -9
- package/ts3.4/esm/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.4/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.4/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.4/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.4/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.4/esm/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.4/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.4/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.4/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.4/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.4/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.4/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.4/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.4/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.4/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.4/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.4/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.4/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.4/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.4/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.4/esm/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.4/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.4/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.4/esm/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.4/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.4/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.4/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.4/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.4/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.4/esm/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.4/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.4/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.4/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.4/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.4/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.4/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.4/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.4/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Circle/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.4/esm/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.4/esm/Shapes/Image/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Line/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.4/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.4/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.4/esm/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.4/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Square/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.4/esm/Shapes/Star/index.d.ts +0 -2
- package/ts3.4/esm/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.4/esm/Shapes/Text/index.d.ts +0 -2
- package/ts3.4/esm/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.4/esm/Types/PathOptions.d.ts +0 -3
- package/ts3.4/esm/Types/RangeValue.d.ts +0 -2
- package/ts3.4/esm/Types/RecursivePartial.d.ts +0 -3
- package/ts3.4/esm/Types/ShapeData.d.ts +0 -5
- package/ts3.4/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.4/esm/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.4/esm/Types/index.d.ts +0 -6
- package/ts3.4/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Angle/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Color/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.4/esm/Updaters/Life/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.4/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.4/esm/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.4/esm/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Roll/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Size/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.4/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.4/esm/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.4/esm/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.4/esm/Utils/Circle.d.ts +0 -8
- package/ts3.4/esm/Utils/CircleWarp.d.ts +0 -10
- package/ts3.4/esm/Utils/ColorUtils.d.ts +0 -26
- package/ts3.4/esm/Utils/Constants.d.ts +0 -18
- package/ts3.4/esm/Utils/EventListeners.d.ts +0 -30
- package/ts3.4/esm/Utils/NumberUtils.d.ts +0 -23
- package/ts3.4/esm/Utils/Plugins.d.ts +0 -22
- package/ts3.4/esm/Utils/Point.d.ts +0 -7
- package/ts3.4/esm/Utils/QuadTree.d.ts +0 -23
- package/ts3.4/esm/Utils/Range.d.ts +0 -7
- package/ts3.4/esm/Utils/Rectangle.d.ts +0 -9
- package/ts3.4/esm/Utils/Utils.d.ts +0 -65
- package/ts3.4/esm/Utils/index.d.ts +0 -13
- package/ts3.4/esm/full.d.ts +0 -2
- package/ts3.4/esm/index.d.ts +0 -31
- package/ts3.4/esm/index.slim.d.ts +0 -25
- package/ts3.4/esm/main.d.ts +0 -24
- package/ts3.4/esm/pjs.d.ts +0 -14
- package/ts3.4/esm/slim.d.ts +0 -2
- package/ts3.4/full.d.ts +0 -2
- package/ts3.4/index.d.ts +0 -31
- package/ts3.4/index.slim.d.ts +0 -25
- package/ts3.4/main.d.ts +0 -24
- package/ts3.4/pjs.d.ts +0 -14
- package/ts3.4/slim.d.ts +0 -2
- package/ts3.8/Core/Canvas.d.ts +0 -36
- package/ts3.8/Core/Container.d.ts +0 -64
- package/ts3.8/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.8/Core/FrameManager.d.ts +0 -6
- package/ts3.8/Core/InteractionManager.d.ts +0 -11
- package/ts3.8/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.8/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.8/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.8/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.8/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.8/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.8/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.8/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.8/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.8/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.8/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.8/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.8/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.8/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.8/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.8/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.8/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.8/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.8/Core/Interfaces/index.d.ts +0 -33
- package/ts3.8/Core/Loader.d.ts +0 -14
- package/ts3.8/Core/Particle/Mover.d.ts +0 -13
- package/ts3.8/Core/Particle/Vector.d.ts +0 -29
- package/ts3.8/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.8/Core/Particle.d.ts +0 -84
- package/ts3.8/Core/Particles.d.ts +0 -45
- package/ts3.8/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.8/Core/Retina.d.ts +0 -26
- package/ts3.8/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.8/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.8/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.8/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.8/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.8/Enums/Directions/index.d.ts +0 -4
- package/ts3.8/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.8/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.8/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.8/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.8/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.8/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.8/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.8/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.8/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.8/Enums/Modes/index.d.ts +0 -8
- package/ts3.8/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.8/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.8/Enums/Types/DivType.d.ts +0 -4
- package/ts3.8/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.8/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.8/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.8/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.8/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.8/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.8/Enums/Types/index.d.ts +0 -9
- package/ts3.8/Enums/index.d.ts +0 -5
- package/ts3.8/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.8/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.8/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.8/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.8/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.8/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.8/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.8/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.8/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.8/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.8/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.8/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.8/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.8/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.8/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.8/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.8/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.8/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.8/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.8/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.8/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.8/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.8/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.8/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.8/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.8/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.8/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.8/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.8/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.8/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts3.8/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts3.8/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.8/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts3.8/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.8/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.8/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.8/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.8/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts3.8/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.8/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts3.8/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.8/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.8/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts3.8/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts3.8/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.8/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.8/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts3.8/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.8/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.8/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.8/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.8/Options/Classes/Options.d.ts +0 -43
- package/ts3.8/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.8/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.8/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts3.8/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts3.8/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.8/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.8/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.8/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts3.8/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.8/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts3.8/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts3.8/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.8/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.8/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.8/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.8/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.8/Options/Classes/Random.d.ts +0 -9
- package/ts3.8/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.8/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.8/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.8/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.8/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.8/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.8/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.8/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.8/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.8/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.8/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.8/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.8/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.8/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.8/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.8/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.8/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.8/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.8/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.8/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.8/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.8/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.8/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.8/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.8/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.8/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.8/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.8/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.8/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.8/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.8/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.8/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.8/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.8/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.8/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.8/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.8/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.8/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.8/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.8/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.8/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.8/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.8/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.8/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.8/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.8/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.8/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.8/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.8/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.8/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.8/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.8/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.8/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.8/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts3.8/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.8/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.8/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.8/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.8/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.8/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.8/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.8/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Circle/index.d.ts +0 -2
- package/ts3.8/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.8/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.8/Shapes/Image/index.d.ts +0 -2
- package/ts3.8/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Line/index.d.ts +0 -2
- package/ts3.8/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.8/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.8/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.8/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.8/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Square/index.d.ts +0 -2
- package/ts3.8/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.8/Shapes/Star/index.d.ts +0 -2
- package/ts3.8/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.8/Shapes/Text/index.d.ts +0 -2
- package/ts3.8/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.8/Types/PathOptions.d.ts +0 -3
- package/ts3.8/Types/RangeValue.d.ts +0 -2
- package/ts3.8/Types/RecursivePartial.d.ts +0 -3
- package/ts3.8/Types/ShapeData.d.ts +0 -5
- package/ts3.8/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.8/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.8/Types/index.d.ts +0 -6
- package/ts3.8/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Angle/index.d.ts +0 -2
- package/ts3.8/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Color/index.d.ts +0 -2
- package/ts3.8/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.8/Updaters/Life/index.d.ts +0 -2
- package/ts3.8/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.8/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.8/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.8/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.8/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.8/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Roll/index.d.ts +0 -2
- package/ts3.8/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Size/index.d.ts +0 -2
- package/ts3.8/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.8/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.8/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.8/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.8/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.8/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.8/Utils/Circle.d.ts +0 -8
- package/ts3.8/Utils/CircleWarp.d.ts +0 -10
- package/ts3.8/Utils/ColorUtils.d.ts +0 -26
- package/ts3.8/Utils/Constants.d.ts +0 -18
- package/ts3.8/Utils/EventListeners.d.ts +0 -30
- package/ts3.8/Utils/NumberUtils.d.ts +0 -23
- package/ts3.8/Utils/Plugins.d.ts +0 -22
- package/ts3.8/Utils/Point.d.ts +0 -7
- package/ts3.8/Utils/QuadTree.d.ts +0 -23
- package/ts3.8/Utils/Range.d.ts +0 -7
- package/ts3.8/Utils/Rectangle.d.ts +0 -9
- package/ts3.8/Utils/Utils.d.ts +0 -65
- package/ts3.8/Utils/index.d.ts +0 -13
- package/ts3.8/browser/Core/Canvas.d.ts +0 -36
- package/ts3.8/browser/Core/Container.d.ts +0 -64
- package/ts3.8/browser/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.8/browser/Core/FrameManager.d.ts +0 -6
- package/ts3.8/browser/Core/InteractionManager.d.ts +0 -11
- package/ts3.8/browser/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.8/browser/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.8/browser/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.8/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.8/browser/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.8/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.8/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.8/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.8/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.8/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.8/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.8/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.8/browser/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.8/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.8/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.8/browser/Core/Interfaces/index.d.ts +0 -33
- package/ts3.8/browser/Core/Loader.d.ts +0 -14
- package/ts3.8/browser/Core/Particle/Mover.d.ts +0 -13
- package/ts3.8/browser/Core/Particle/Vector.d.ts +0 -29
- package/ts3.8/browser/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.8/browser/Core/Particle.d.ts +0 -84
- package/ts3.8/browser/Core/Particles.d.ts +0 -45
- package/ts3.8/browser/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.8/browser/Core/Retina.d.ts +0 -26
- package/ts3.8/browser/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.8/browser/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.8/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.8/browser/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.8/browser/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.8/browser/Enums/Directions/index.d.ts +0 -4
- package/ts3.8/browser/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.8/browser/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.8/browser/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.8/browser/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.8/browser/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.8/browser/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.8/browser/Enums/Modes/index.d.ts +0 -8
- package/ts3.8/browser/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.8/browser/Enums/Types/DivType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.8/browser/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.8/browser/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.8/browser/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.8/browser/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.8/browser/Enums/Types/index.d.ts +0 -9
- package/ts3.8/browser/Enums/index.d.ts +0 -5
- package/ts3.8/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.8/browser/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.8/browser/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.8/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.8/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.8/browser/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.8/browser/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.8/browser/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.8/browser/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.8/browser/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.8/browser/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.8/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.8/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.8/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.8/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.8/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.8/browser/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.8/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.8/browser/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.8/browser/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts3.8/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts3.8/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Options.d.ts +0 -43
- package/ts3.8/browser/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.8/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts3.8/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts3.8/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.8/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.8/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.8/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts3.8/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts3.8/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts3.8/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.8/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.8/browser/Options/Classes/Random.d.ts +0 -9
- package/ts3.8/browser/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.8/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.8/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.8/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.8/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.8/browser/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.8/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.8/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.8/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.8/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.8/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.8/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.8/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.8/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.8/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.8/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.8/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.8/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.8/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.8/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.8/browser/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.8/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.8/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.8/browser/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.8/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.8/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.8/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.8/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.8/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.8/browser/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.8/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.8/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.8/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.8/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.8/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.8/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.8/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.8/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Circle/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.8/browser/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.8/browser/Shapes/Image/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Line/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.8/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.8/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.8/browser/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.8/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Square/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.8/browser/Shapes/Star/index.d.ts +0 -2
- package/ts3.8/browser/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.8/browser/Shapes/Text/index.d.ts +0 -2
- package/ts3.8/browser/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.8/browser/Types/PathOptions.d.ts +0 -3
- package/ts3.8/browser/Types/RangeValue.d.ts +0 -2
- package/ts3.8/browser/Types/RecursivePartial.d.ts +0 -3
- package/ts3.8/browser/Types/ShapeData.d.ts +0 -5
- package/ts3.8/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.8/browser/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.8/browser/Types/index.d.ts +0 -6
- package/ts3.8/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Angle/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Color/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.8/browser/Updaters/Life/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.8/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.8/browser/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.8/browser/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Roll/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Size/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.8/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.8/browser/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.8/browser/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.8/browser/Utils/Circle.d.ts +0 -8
- package/ts3.8/browser/Utils/CircleWarp.d.ts +0 -10
- package/ts3.8/browser/Utils/ColorUtils.d.ts +0 -26
- package/ts3.8/browser/Utils/Constants.d.ts +0 -18
- package/ts3.8/browser/Utils/EventListeners.d.ts +0 -30
- package/ts3.8/browser/Utils/NumberUtils.d.ts +0 -23
- package/ts3.8/browser/Utils/Plugins.d.ts +0 -22
- package/ts3.8/browser/Utils/Point.d.ts +0 -7
- package/ts3.8/browser/Utils/QuadTree.d.ts +0 -23
- package/ts3.8/browser/Utils/Range.d.ts +0 -7
- package/ts3.8/browser/Utils/Rectangle.d.ts +0 -9
- package/ts3.8/browser/Utils/Utils.d.ts +0 -65
- package/ts3.8/browser/Utils/index.d.ts +0 -13
- package/ts3.8/browser/full.d.ts +0 -2
- package/ts3.8/browser/index.d.ts +0 -31
- package/ts3.8/browser/index.slim.d.ts +0 -25
- package/ts3.8/browser/main.d.ts +0 -24
- package/ts3.8/browser/pjs.d.ts +0 -14
- package/ts3.8/browser/slim.d.ts +0 -2
- package/ts3.8/esm/Core/Canvas.d.ts +0 -36
- package/ts3.8/esm/Core/Container.d.ts +0 -64
- package/ts3.8/esm/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts3.8/esm/Core/FrameManager.d.ts +0 -6
- package/ts3.8/esm/Core/InteractionManager.d.ts +0 -11
- package/ts3.8/esm/Core/Interfaces/Colors.d.ts +0 -33
- package/ts3.8/esm/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts3.8/esm/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts3.8/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts3.8/esm/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts3.8/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts3.8/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts3.8/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts3.8/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts3.8/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts3.8/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts3.8/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts3.8/esm/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts3.8/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts3.8/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts3.8/esm/Core/Interfaces/index.d.ts +0 -33
- package/ts3.8/esm/Core/Loader.d.ts +0 -14
- package/ts3.8/esm/Core/Particle/Mover.d.ts +0 -13
- package/ts3.8/esm/Core/Particle/Vector.d.ts +0 -29
- package/ts3.8/esm/Core/Particle/Vector3d.d.ts +0 -18
- package/ts3.8/esm/Core/Particle.d.ts +0 -84
- package/ts3.8/esm/Core/Particles.d.ts +0 -45
- package/ts3.8/esm/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts3.8/esm/Core/Retina.d.ts +0 -26
- package/ts3.8/esm/Enums/AnimationStatus.d.ts +0 -4
- package/ts3.8/esm/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts3.8/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts3.8/esm/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts3.8/esm/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts3.8/esm/Enums/Directions/index.d.ts +0 -4
- package/ts3.8/esm/Enums/InteractivityDetect.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts3.8/esm/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts3.8/esm/Enums/Modes/DivMode.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts3.8/esm/Enums/Modes/OutMode.d.ts +0 -10
- package/ts3.8/esm/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts3.8/esm/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts3.8/esm/Enums/Modes/index.d.ts +0 -8
- package/ts3.8/esm/Enums/Types/AlterType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/DestroyType.d.ts +0 -5
- package/ts3.8/esm/Enums/Types/DivType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/EasingType.d.ts +0 -10
- package/ts3.8/esm/Enums/Types/GradientType.d.ts +0 -5
- package/ts3.8/esm/Enums/Types/InteractorType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/OrbitType.d.ts +0 -4
- package/ts3.8/esm/Enums/Types/ShapeType.d.ts +0 -13
- package/ts3.8/esm/Enums/Types/StartValueType.d.ts +0 -5
- package/ts3.8/esm/Enums/Types/index.d.ts +0 -9
- package/ts3.8/esm/Enums/index.d.ts +0 -5
- package/ts3.8/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts3.8/esm/Interactions/External/Attract/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts3.8/esm/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts3.8/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts3.8/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts3.8/esm/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts3.8/esm/Interactions/External/Connect/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts3.8/esm/Interactions/External/Grab/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts3.8/esm/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts3.8/esm/Interactions/External/Trail/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts3.8/esm/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts3.8/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts3.8/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts3.8/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts3.8/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts3.8/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts3.8/esm/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts3.8/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts3.8/esm/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts3.8/esm/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Background/Background.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts3.8/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts3.8/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Options.d.ts +0 -43
- package/ts3.8/esm/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts3.8/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts3.8/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts3.8/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts3.8/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts3.8/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts3.8/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts3.8/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts3.8/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts3.8/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts3.8/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts3.8/esm/Options/Classes/Random.d.ts +0 -9
- package/ts3.8/esm/Options/Classes/Responsive.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts3.8/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts3.8/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts3.8/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts3.8/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts3.8/esm/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts3.8/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts3.8/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts3.8/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts3.8/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts3.8/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts3.8/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts3.8/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts3.8/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts3.8/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts3.8/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts3.8/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts3.8/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts3.8/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts3.8/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts3.8/esm/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts3.8/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts3.8/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts3.8/esm/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts3.8/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts3.8/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts3.8/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts3.8/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts3.8/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts3.8/esm/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts3.8/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts3.8/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts3.8/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts3.8/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts3.8/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts3.8/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts3.8/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts3.8/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Circle/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts3.8/esm/Shapes/Image/Utils.d.ts +0 -25
- package/ts3.8/esm/Shapes/Image/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Line/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts3.8/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts3.8/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts3.8/esm/Shapes/Polygon/index.d.ts +0 -4
- package/ts3.8/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Square/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts3.8/esm/Shapes/Star/index.d.ts +0 -2
- package/ts3.8/esm/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts3.8/esm/Shapes/Text/index.d.ts +0 -2
- package/ts3.8/esm/Types/ParticlesGroups.d.ts +0 -4
- package/ts3.8/esm/Types/PathOptions.d.ts +0 -3
- package/ts3.8/esm/Types/RangeValue.d.ts +0 -2
- package/ts3.8/esm/Types/RecursivePartial.d.ts +0 -3
- package/ts3.8/esm/Types/ShapeData.d.ts +0 -5
- package/ts3.8/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts3.8/esm/Types/SingleOrMultiple.d.ts +0 -1
- package/ts3.8/esm/Types/index.d.ts +0 -6
- package/ts3.8/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Angle/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Color/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts3.8/esm/Updaters/Life/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Opacity/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts3.8/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts3.8/esm/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts3.8/esm/Updaters/OutModes/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Roll/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Size/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Tilt/index.d.ts +0 -2
- package/ts3.8/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts3.8/esm/Updaters/Wobble/index.d.ts +0 -2
- package/ts3.8/esm/Utils/CanvasUtils.d.ts +0 -18
- package/ts3.8/esm/Utils/Circle.d.ts +0 -8
- package/ts3.8/esm/Utils/CircleWarp.d.ts +0 -10
- package/ts3.8/esm/Utils/ColorUtils.d.ts +0 -26
- package/ts3.8/esm/Utils/Constants.d.ts +0 -18
- package/ts3.8/esm/Utils/EventListeners.d.ts +0 -30
- package/ts3.8/esm/Utils/NumberUtils.d.ts +0 -23
- package/ts3.8/esm/Utils/Plugins.d.ts +0 -22
- package/ts3.8/esm/Utils/Point.d.ts +0 -7
- package/ts3.8/esm/Utils/QuadTree.d.ts +0 -23
- package/ts3.8/esm/Utils/Range.d.ts +0 -7
- package/ts3.8/esm/Utils/Rectangle.d.ts +0 -9
- package/ts3.8/esm/Utils/Utils.d.ts +0 -65
- package/ts3.8/esm/Utils/index.d.ts +0 -13
- package/ts3.8/esm/full.d.ts +0 -2
- package/ts3.8/esm/index.d.ts +0 -31
- package/ts3.8/esm/index.slim.d.ts +0 -25
- package/ts3.8/esm/main.d.ts +0 -24
- package/ts3.8/esm/pjs.d.ts +0 -14
- package/ts3.8/esm/slim.d.ts +0 -2
- package/ts3.8/full.d.ts +0 -2
- package/ts3.8/index.d.ts +0 -31
- package/ts3.8/index.slim.d.ts +0 -25
- package/ts3.8/main.d.ts +0 -24
- package/ts3.8/pjs.d.ts +0 -14
- package/ts3.8/slim.d.ts +0 -2
- package/ts4.0/Core/Canvas.d.ts +0 -36
- package/ts4.0/Core/Container.d.ts +0 -64
- package/ts4.0/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts4.0/Core/FrameManager.d.ts +0 -6
- package/ts4.0/Core/InteractionManager.d.ts +0 -11
- package/ts4.0/Core/Interfaces/Colors.d.ts +0 -33
- package/ts4.0/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts4.0/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts4.0/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts4.0/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts4.0/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts4.0/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts4.0/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts4.0/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts4.0/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts4.0/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts4.0/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts4.0/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts4.0/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts4.0/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts4.0/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts4.0/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts4.0/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts4.0/Core/Interfaces/index.d.ts +0 -33
- package/ts4.0/Core/Loader.d.ts +0 -14
- package/ts4.0/Core/Particle/Mover.d.ts +0 -13
- package/ts4.0/Core/Particle/Vector.d.ts +0 -29
- package/ts4.0/Core/Particle/Vector3d.d.ts +0 -18
- package/ts4.0/Core/Particle.d.ts +0 -84
- package/ts4.0/Core/Particles.d.ts +0 -45
- package/ts4.0/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts4.0/Core/Retina.d.ts +0 -26
- package/ts4.0/Enums/AnimationStatus.d.ts +0 -4
- package/ts4.0/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts4.0/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts4.0/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts4.0/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts4.0/Enums/Directions/index.d.ts +0 -4
- package/ts4.0/Enums/InteractivityDetect.d.ts +0 -5
- package/ts4.0/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts4.0/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts4.0/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts4.0/Enums/Modes/DivMode.d.ts +0 -5
- package/ts4.0/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts4.0/Enums/Modes/OutMode.d.ts +0 -10
- package/ts4.0/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts4.0/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts4.0/Enums/Modes/index.d.ts +0 -8
- package/ts4.0/Enums/Types/AlterType.d.ts +0 -4
- package/ts4.0/Enums/Types/DestroyType.d.ts +0 -5
- package/ts4.0/Enums/Types/DivType.d.ts +0 -4
- package/ts4.0/Enums/Types/EasingType.d.ts +0 -10
- package/ts4.0/Enums/Types/GradientType.d.ts +0 -5
- package/ts4.0/Enums/Types/InteractorType.d.ts +0 -4
- package/ts4.0/Enums/Types/OrbitType.d.ts +0 -4
- package/ts4.0/Enums/Types/ShapeType.d.ts +0 -13
- package/ts4.0/Enums/Types/StartValueType.d.ts +0 -5
- package/ts4.0/Enums/Types/index.d.ts +0 -9
- package/ts4.0/Enums/index.d.ts +0 -5
- package/ts4.0/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts4.0/Interactions/External/Attract/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts4.0/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts4.0/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts4.0/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts4.0/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts4.0/Interactions/External/Connect/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts4.0/Interactions/External/Grab/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts4.0/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts4.0/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts4.0/Interactions/External/Trail/index.d.ts +0 -2
- package/ts4.0/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts4.0/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts4.0/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts4.0/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts4.0/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts4.0/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts4.0/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts4.0/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts4.0/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts4.0/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts4.0/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts4.0/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts4.0/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts4.0/Options/Classes/Background/Background.d.ts +0 -14
- package/ts4.0/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts4.0/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts4.0/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts4.0/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts4.0/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts4.0/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts4.0/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts4.0/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts4.0/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts4.0/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts4.0/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts4.0/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts4.0/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts4.0/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts4.0/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts4.0/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts4.0/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts4.0/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts4.0/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts4.0/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts4.0/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts4.0/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts4.0/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts4.0/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts4.0/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts4.0/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts4.0/Options/Classes/Options.d.ts +0 -43
- package/ts4.0/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts4.0/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts4.0/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts4.0/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts4.0/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts4.0/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts4.0/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts4.0/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts4.0/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts4.0/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts4.0/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts4.0/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts4.0/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts4.0/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts4.0/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts4.0/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts4.0/Options/Classes/Random.d.ts +0 -9
- package/ts4.0/Options/Classes/Responsive.d.ts +0 -10
- package/ts4.0/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts4.0/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts4.0/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts4.0/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts4.0/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts4.0/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts4.0/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts4.0/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts4.0/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts4.0/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts4.0/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts4.0/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts4.0/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts4.0/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts4.0/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts4.0/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts4.0/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts4.0/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts4.0/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts4.0/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts4.0/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts4.0/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts4.0/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts4.0/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts4.0/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts4.0/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts4.0/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts4.0/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts4.0/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts4.0/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts4.0/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts4.0/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts4.0/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts4.0/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts4.0/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts4.0/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts4.0/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts4.0/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts4.0/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts4.0/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts4.0/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts4.0/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts4.0/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts4.0/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts4.0/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts4.0/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts4.0/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts4.0/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts4.0/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts4.0/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts4.0/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts4.0/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts4.0/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts4.0/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts4.0/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts4.0/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts4.0/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts4.0/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts4.0/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts4.0/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts4.0/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Circle/index.d.ts +0 -2
- package/ts4.0/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts4.0/Shapes/Image/Utils.d.ts +0 -25
- package/ts4.0/Shapes/Image/index.d.ts +0 -2
- package/ts4.0/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Line/index.d.ts +0 -2
- package/ts4.0/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts4.0/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts4.0/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts4.0/Shapes/Polygon/index.d.ts +0 -4
- package/ts4.0/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Square/index.d.ts +0 -2
- package/ts4.0/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts4.0/Shapes/Star/index.d.ts +0 -2
- package/ts4.0/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts4.0/Shapes/Text/index.d.ts +0 -2
- package/ts4.0/Types/ParticlesGroups.d.ts +0 -4
- package/ts4.0/Types/PathOptions.d.ts +0 -3
- package/ts4.0/Types/RangeValue.d.ts +0 -2
- package/ts4.0/Types/RecursivePartial.d.ts +0 -3
- package/ts4.0/Types/ShapeData.d.ts +0 -5
- package/ts4.0/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts4.0/Types/SingleOrMultiple.d.ts +0 -1
- package/ts4.0/Types/index.d.ts +0 -6
- package/ts4.0/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Angle/index.d.ts +0 -2
- package/ts4.0/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Color/index.d.ts +0 -2
- package/ts4.0/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts4.0/Updaters/Life/index.d.ts +0 -2
- package/ts4.0/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Opacity/index.d.ts +0 -2
- package/ts4.0/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts4.0/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts4.0/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts4.0/Updaters/OutModes/index.d.ts +0 -2
- package/ts4.0/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Roll/index.d.ts +0 -2
- package/ts4.0/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Size/index.d.ts +0 -2
- package/ts4.0/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts4.0/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts4.0/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Tilt/index.d.ts +0 -2
- package/ts4.0/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts4.0/Updaters/Wobble/index.d.ts +0 -2
- package/ts4.0/Utils/CanvasUtils.d.ts +0 -18
- package/ts4.0/Utils/Circle.d.ts +0 -8
- package/ts4.0/Utils/CircleWarp.d.ts +0 -10
- package/ts4.0/Utils/ColorUtils.d.ts +0 -26
- package/ts4.0/Utils/Constants.d.ts +0 -18
- package/ts4.0/Utils/EventListeners.d.ts +0 -30
- package/ts4.0/Utils/NumberUtils.d.ts +0 -23
- package/ts4.0/Utils/Plugins.d.ts +0 -22
- package/ts4.0/Utils/Point.d.ts +0 -7
- package/ts4.0/Utils/QuadTree.d.ts +0 -23
- package/ts4.0/Utils/Range.d.ts +0 -7
- package/ts4.0/Utils/Rectangle.d.ts +0 -9
- package/ts4.0/Utils/Utils.d.ts +0 -65
- package/ts4.0/Utils/index.d.ts +0 -13
- package/ts4.0/browser/Core/Canvas.d.ts +0 -36
- package/ts4.0/browser/Core/Container.d.ts +0 -64
- package/ts4.0/browser/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts4.0/browser/Core/FrameManager.d.ts +0 -6
- package/ts4.0/browser/Core/InteractionManager.d.ts +0 -11
- package/ts4.0/browser/Core/Interfaces/Colors.d.ts +0 -33
- package/ts4.0/browser/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts4.0/browser/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts4.0/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts4.0/browser/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts4.0/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts4.0/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts4.0/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts4.0/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts4.0/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts4.0/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts4.0/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts4.0/browser/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts4.0/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts4.0/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts4.0/browser/Core/Interfaces/index.d.ts +0 -33
- package/ts4.0/browser/Core/Loader.d.ts +0 -14
- package/ts4.0/browser/Core/Particle/Mover.d.ts +0 -13
- package/ts4.0/browser/Core/Particle/Vector.d.ts +0 -29
- package/ts4.0/browser/Core/Particle/Vector3d.d.ts +0 -18
- package/ts4.0/browser/Core/Particle.d.ts +0 -84
- package/ts4.0/browser/Core/Particles.d.ts +0 -45
- package/ts4.0/browser/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts4.0/browser/Core/Retina.d.ts +0 -26
- package/ts4.0/browser/Enums/AnimationStatus.d.ts +0 -4
- package/ts4.0/browser/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts4.0/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts4.0/browser/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts4.0/browser/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts4.0/browser/Enums/Directions/index.d.ts +0 -4
- package/ts4.0/browser/Enums/InteractivityDetect.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts4.0/browser/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts4.0/browser/Enums/Modes/DivMode.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts4.0/browser/Enums/Modes/OutMode.d.ts +0 -10
- package/ts4.0/browser/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts4.0/browser/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts4.0/browser/Enums/Modes/index.d.ts +0 -8
- package/ts4.0/browser/Enums/Types/AlterType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/DestroyType.d.ts +0 -5
- package/ts4.0/browser/Enums/Types/DivType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/EasingType.d.ts +0 -10
- package/ts4.0/browser/Enums/Types/GradientType.d.ts +0 -5
- package/ts4.0/browser/Enums/Types/InteractorType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/OrbitType.d.ts +0 -4
- package/ts4.0/browser/Enums/Types/ShapeType.d.ts +0 -13
- package/ts4.0/browser/Enums/Types/StartValueType.d.ts +0 -5
- package/ts4.0/browser/Enums/Types/index.d.ts +0 -9
- package/ts4.0/browser/Enums/index.d.ts +0 -5
- package/ts4.0/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts4.0/browser/Interactions/External/Attract/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts4.0/browser/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts4.0/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts4.0/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts4.0/browser/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts4.0/browser/Interactions/External/Connect/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts4.0/browser/Interactions/External/Grab/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts4.0/browser/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts4.0/browser/Interactions/External/Trail/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts4.0/browser/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts4.0/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts4.0/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts4.0/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts4.0/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts4.0/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts4.0/browser/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts4.0/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts4.0/browser/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts4.0/browser/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Background/Background.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts4.0/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts4.0/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Options.d.ts +0 -43
- package/ts4.0/browser/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts4.0/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts4.0/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts4.0/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts4.0/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts4.0/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts4.0/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts4.0/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts4.0/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts4.0/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts4.0/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts4.0/browser/Options/Classes/Random.d.ts +0 -9
- package/ts4.0/browser/Options/Classes/Responsive.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts4.0/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts4.0/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts4.0/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts4.0/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts4.0/browser/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts4.0/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts4.0/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts4.0/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts4.0/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts4.0/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts4.0/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts4.0/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts4.0/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts4.0/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts4.0/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts4.0/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts4.0/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts4.0/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts4.0/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts4.0/browser/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts4.0/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts4.0/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts4.0/browser/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts4.0/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts4.0/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts4.0/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts4.0/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts4.0/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts4.0/browser/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts4.0/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts4.0/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts4.0/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts4.0/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts4.0/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts4.0/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts4.0/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts4.0/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Circle/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts4.0/browser/Shapes/Image/Utils.d.ts +0 -25
- package/ts4.0/browser/Shapes/Image/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Line/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts4.0/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts4.0/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts4.0/browser/Shapes/Polygon/index.d.ts +0 -4
- package/ts4.0/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Square/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts4.0/browser/Shapes/Star/index.d.ts +0 -2
- package/ts4.0/browser/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts4.0/browser/Shapes/Text/index.d.ts +0 -2
- package/ts4.0/browser/Types/ParticlesGroups.d.ts +0 -4
- package/ts4.0/browser/Types/PathOptions.d.ts +0 -3
- package/ts4.0/browser/Types/RangeValue.d.ts +0 -2
- package/ts4.0/browser/Types/RecursivePartial.d.ts +0 -3
- package/ts4.0/browser/Types/ShapeData.d.ts +0 -5
- package/ts4.0/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts4.0/browser/Types/SingleOrMultiple.d.ts +0 -1
- package/ts4.0/browser/Types/index.d.ts +0 -6
- package/ts4.0/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Angle/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Color/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts4.0/browser/Updaters/Life/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Opacity/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts4.0/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts4.0/browser/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts4.0/browser/Updaters/OutModes/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Roll/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Size/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Tilt/index.d.ts +0 -2
- package/ts4.0/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts4.0/browser/Updaters/Wobble/index.d.ts +0 -2
- package/ts4.0/browser/Utils/CanvasUtils.d.ts +0 -18
- package/ts4.0/browser/Utils/Circle.d.ts +0 -8
- package/ts4.0/browser/Utils/CircleWarp.d.ts +0 -10
- package/ts4.0/browser/Utils/ColorUtils.d.ts +0 -26
- package/ts4.0/browser/Utils/Constants.d.ts +0 -18
- package/ts4.0/browser/Utils/EventListeners.d.ts +0 -30
- package/ts4.0/browser/Utils/NumberUtils.d.ts +0 -23
- package/ts4.0/browser/Utils/Plugins.d.ts +0 -22
- package/ts4.0/browser/Utils/Point.d.ts +0 -7
- package/ts4.0/browser/Utils/QuadTree.d.ts +0 -23
- package/ts4.0/browser/Utils/Range.d.ts +0 -7
- package/ts4.0/browser/Utils/Rectangle.d.ts +0 -9
- package/ts4.0/browser/Utils/Utils.d.ts +0 -65
- package/ts4.0/browser/Utils/index.d.ts +0 -13
- package/ts4.0/browser/full.d.ts +0 -2
- package/ts4.0/browser/index.d.ts +0 -31
- package/ts4.0/browser/index.slim.d.ts +0 -25
- package/ts4.0/browser/main.d.ts +0 -24
- package/ts4.0/browser/pjs.d.ts +0 -14
- package/ts4.0/browser/slim.d.ts +0 -2
- package/ts4.0/esm/Core/Canvas.d.ts +0 -36
- package/ts4.0/esm/Core/Container.d.ts +0 -64
- package/ts4.0/esm/Core/ExternalInteractorBase.d.ts +0 -12
- package/ts4.0/esm/Core/FrameManager.d.ts +0 -6
- package/ts4.0/esm/Core/InteractionManager.d.ts +0 -11
- package/ts4.0/esm/Core/Interfaces/Colors.d.ts +0 -33
- package/ts4.0/esm/Core/Interfaces/Gradients.d.ts +0 -21
- package/ts4.0/esm/Core/Interfaces/IAttract.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IBounds.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IBubble.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
- package/ts4.0/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IDelta.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IDimension.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IDistance.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IInteractor.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IMouseData.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
- package/ts4.0/esm/Core/Interfaces/IParticle.d.ts +0 -59
- package/ts4.0/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
- package/ts4.0/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
- package/ts4.0/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
- package/ts4.0/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
- package/ts4.0/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IPlugin.d.ts +0 -11
- package/ts4.0/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
- package/ts4.0/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
- package/ts4.0/esm/Core/Interfaces/IRepulse.d.ts +0 -7
- package/ts4.0/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
- package/ts4.0/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
- package/ts4.0/esm/Core/Interfaces/index.d.ts +0 -33
- package/ts4.0/esm/Core/Loader.d.ts +0 -14
- package/ts4.0/esm/Core/Particle/Mover.d.ts +0 -13
- package/ts4.0/esm/Core/Particle/Vector.d.ts +0 -29
- package/ts4.0/esm/Core/Particle/Vector3d.d.ts +0 -18
- package/ts4.0/esm/Core/Particle.d.ts +0 -84
- package/ts4.0/esm/Core/Particles.d.ts +0 -45
- package/ts4.0/esm/Core/ParticlesInteractorBase.d.ts +0 -12
- package/ts4.0/esm/Core/Retina.d.ts +0 -26
- package/ts4.0/esm/Enums/AnimationStatus.d.ts +0 -4
- package/ts4.0/esm/Enums/Directions/MoveDirection.d.ts +0 -12
- package/ts4.0/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
- package/ts4.0/esm/Enums/Directions/RotateDirection.d.ts +0 -6
- package/ts4.0/esm/Enums/Directions/TiltDirection.d.ts +0 -6
- package/ts4.0/esm/Enums/Directions/index.d.ts +0 -4
- package/ts4.0/esm/Enums/InteractivityDetect.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/ClickMode.d.ts +0 -9
- package/ts4.0/esm/Enums/Modes/CollisionMode.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/DestroyMode.d.ts +0 -4
- package/ts4.0/esm/Enums/Modes/DivMode.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/HoverMode.d.ts +0 -11
- package/ts4.0/esm/Enums/Modes/OutMode.d.ts +0 -10
- package/ts4.0/esm/Enums/Modes/SizeMode.d.ts +0 -4
- package/ts4.0/esm/Enums/Modes/ThemeMode.d.ts +0 -5
- package/ts4.0/esm/Enums/Modes/index.d.ts +0 -8
- package/ts4.0/esm/Enums/Types/AlterType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/DestroyType.d.ts +0 -5
- package/ts4.0/esm/Enums/Types/DivType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/EasingType.d.ts +0 -10
- package/ts4.0/esm/Enums/Types/GradientType.d.ts +0 -5
- package/ts4.0/esm/Enums/Types/InteractorType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/OrbitType.d.ts +0 -4
- package/ts4.0/esm/Enums/Types/ShapeType.d.ts +0 -13
- package/ts4.0/esm/Enums/Types/StartValueType.d.ts +0 -5
- package/ts4.0/esm/Enums/Types/index.d.ts +0 -9
- package/ts4.0/esm/Enums/index.d.ts +0 -5
- package/ts4.0/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
- package/ts4.0/esm/Interactions/External/Attract/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
- package/ts4.0/esm/Interactions/External/Bounce/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
- package/ts4.0/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
- package/ts4.0/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
- package/ts4.0/esm/Interactions/External/Bubble/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Connect/Connector.d.ts +0 -8
- package/ts4.0/esm/Interactions/External/Connect/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
- package/ts4.0/esm/Interactions/External/Grab/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
- package/ts4.0/esm/Interactions/External/Repulse/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
- package/ts4.0/esm/Interactions/External/Trail/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
- package/ts4.0/esm/Interactions/Particles/Attract/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
- package/ts4.0/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
- package/ts4.0/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
- package/ts4.0/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
- package/ts4.0/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
- package/ts4.0/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
- package/ts4.0/esm/Interactions/Particles/Links/index.d.ts +0 -3
- package/ts4.0/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
- package/ts4.0/esm/Options/Classes/AnimatableColor.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
- package/ts4.0/esm/Options/Classes/AnimationOptions.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Background/Background.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/ColorAnimation.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/HslAnimation.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
- package/ts4.0/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
- package/ts4.0/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/ManualParticle.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Motion/Motion.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Options.d.ts +0 -43
- package/ts4.0/esm/Options/Classes/OptionsColor.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
- package/ts4.0/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
- package/ts4.0/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
- package/ts4.0/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
- package/ts4.0/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
- package/ts4.0/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
- package/ts4.0/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
- package/ts4.0/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
- package/ts4.0/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
- package/ts4.0/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
- package/ts4.0/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
- package/ts4.0/esm/Options/Classes/Random.d.ts +0 -9
- package/ts4.0/esm/Options/Classes/Responsive.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/Theme/Theme.d.ts +0 -12
- package/ts4.0/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
- package/ts4.0/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/IAnimation.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IOptions.d.ts +0 -33
- package/ts4.0/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
- package/ts4.0/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
- package/ts4.0/esm/Options/Interfaces/IRandom.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/IResponsive.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
- package/ts4.0/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
- package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
- package/ts4.0/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
- package/ts4.0/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
- package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
- package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
- package/ts4.0/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
- package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
- package/ts4.0/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
- package/ts4.0/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
- package/ts4.0/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
- package/ts4.0/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
- package/ts4.0/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
- package/ts4.0/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
- package/ts4.0/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
- package/ts4.0/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
- package/ts4.0/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
- package/ts4.0/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
- package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
- package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
- package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
- package/ts4.0/esm/Plugins/Absorbers/plugin.d.ts +0 -2
- package/ts4.0/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
- package/ts4.0/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
- package/ts4.0/esm/Plugins/Emitters/Emitters.d.ts +0 -24
- package/ts4.0/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
- package/ts4.0/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
- package/ts4.0/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
- package/ts4.0/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
- package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
- package/ts4.0/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
- package/ts4.0/esm/Plugins/Emitters/plugin.d.ts +0 -3
- package/ts4.0/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
- package/ts4.0/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
- package/ts4.0/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
- package/ts4.0/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
- package/ts4.0/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
- package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
- package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
- package/ts4.0/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
- package/ts4.0/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
- package/ts4.0/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Circle/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
- package/ts4.0/esm/Shapes/Image/Utils.d.ts +0 -25
- package/ts4.0/esm/Shapes/Image/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Line/LineDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Line/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
- package/ts4.0/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
- package/ts4.0/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
- package/ts4.0/esm/Shapes/Polygon/index.d.ts +0 -4
- package/ts4.0/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Square/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Star/StarDrawer.d.ts +0 -5
- package/ts4.0/esm/Shapes/Star/index.d.ts +0 -2
- package/ts4.0/esm/Shapes/Text/TextDrawer.d.ts +0 -8
- package/ts4.0/esm/Shapes/Text/index.d.ts +0 -2
- package/ts4.0/esm/Types/ParticlesGroups.d.ts +0 -4
- package/ts4.0/esm/Types/PathOptions.d.ts +0 -3
- package/ts4.0/esm/Types/RangeValue.d.ts +0 -2
- package/ts4.0/esm/Types/RecursivePartial.d.ts +0 -3
- package/ts4.0/esm/Types/ShapeData.d.ts +0 -5
- package/ts4.0/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
- package/ts4.0/esm/Types/SingleOrMultiple.d.ts +0 -1
- package/ts4.0/esm/Types/index.d.ts +0 -6
- package/ts4.0/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Angle/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Color/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
- package/ts4.0/esm/Updaters/Life/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Opacity/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
- package/ts4.0/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
- package/ts4.0/esm/Updaters/OutModes/Utils.d.ts +0 -3
- package/ts4.0/esm/Updaters/OutModes/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Roll/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Size/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/StrokeColor/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Tilt/index.d.ts +0 -2
- package/ts4.0/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
- package/ts4.0/esm/Updaters/Wobble/index.d.ts +0 -2
- package/ts4.0/esm/Utils/CanvasUtils.d.ts +0 -18
- package/ts4.0/esm/Utils/Circle.d.ts +0 -8
- package/ts4.0/esm/Utils/CircleWarp.d.ts +0 -10
- package/ts4.0/esm/Utils/ColorUtils.d.ts +0 -26
- package/ts4.0/esm/Utils/Constants.d.ts +0 -18
- package/ts4.0/esm/Utils/EventListeners.d.ts +0 -30
- package/ts4.0/esm/Utils/NumberUtils.d.ts +0 -23
- package/ts4.0/esm/Utils/Plugins.d.ts +0 -22
- package/ts4.0/esm/Utils/Point.d.ts +0 -7
- package/ts4.0/esm/Utils/QuadTree.d.ts +0 -23
- package/ts4.0/esm/Utils/Range.d.ts +0 -7
- package/ts4.0/esm/Utils/Rectangle.d.ts +0 -9
- package/ts4.0/esm/Utils/Utils.d.ts +0 -65
- package/ts4.0/esm/Utils/index.d.ts +0 -13
- package/ts4.0/esm/full.d.ts +0 -2
- package/ts4.0/esm/index.d.ts +0 -31
- package/ts4.0/esm/index.slim.d.ts +0 -25
- package/ts4.0/esm/main.d.ts +0 -24
- package/ts4.0/esm/pjs.d.ts +0 -14
- package/ts4.0/esm/slim.d.ts +0 -2
- package/ts4.0/full.d.ts +0 -2
- package/ts4.0/index.d.ts +0 -31
- package/ts4.0/index.slim.d.ts +0 -25
- package/ts4.0/main.d.ts +0 -24
- package/ts4.0/pjs.d.ts +0 -14
- package/ts4.0/slim.d.ts +0 -2
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { IDelta, IExternalInteractor } from "./Interfaces";
|
|
2
|
-
import type { Particle } from "./Particle";
|
|
3
|
-
import type { Container } from "./Container";
|
|
4
|
-
import { InteractorType } from "../Enums";
|
|
5
|
-
export declare abstract class ExternalInteractorBase implements IExternalInteractor {
|
|
6
|
-
protected readonly container: Container;
|
|
7
|
-
protected constructor(container: Container);
|
|
8
|
-
type: InteractorType;
|
|
9
|
-
abstract interact(delta: IDelta): void;
|
|
10
|
-
abstract isEnabled(): boolean;
|
|
11
|
-
abstract reset(particle: Particle): void;
|
|
12
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { Container } from "./Container";
|
|
2
|
-
import type { Particle } from "./Particle";
|
|
3
|
-
import type { IDelta } from "./Interfaces";
|
|
4
|
-
export declare class InteractionManager {
|
|
5
|
-
private readonly container;
|
|
6
|
-
private readonly externalInteractors;
|
|
7
|
-
private readonly particleInteractors;
|
|
8
|
-
constructor(container: Container);
|
|
9
|
-
externalInteract(delta: IDelta): void;
|
|
10
|
-
particlesInteract(particle: Particle, delta: IDelta): void;
|
|
11
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import type { SingleOrMultiple } from "../../Types";
|
|
2
|
-
export interface IAlphaColor {
|
|
3
|
-
a: number;
|
|
4
|
-
}
|
|
5
|
-
export interface IColor {
|
|
6
|
-
value: SingleOrMultiple<IValueColor | IRgb | IHsl | IHsv | SingleOrMultiple<string>>;
|
|
7
|
-
}
|
|
8
|
-
export interface IHsl {
|
|
9
|
-
h: number;
|
|
10
|
-
s: number;
|
|
11
|
-
l: number;
|
|
12
|
-
}
|
|
13
|
-
export interface IHsla extends IHsl, IAlphaColor {
|
|
14
|
-
}
|
|
15
|
-
export interface IHsv {
|
|
16
|
-
h: number;
|
|
17
|
-
s: number;
|
|
18
|
-
v: number;
|
|
19
|
-
}
|
|
20
|
-
export interface IHsva extends IHsv, IAlphaColor {
|
|
21
|
-
}
|
|
22
|
-
export interface IRgb {
|
|
23
|
-
r: number;
|
|
24
|
-
g: number;
|
|
25
|
-
b: number;
|
|
26
|
-
}
|
|
27
|
-
export interface IRgba extends IRgb, IAlphaColor {
|
|
28
|
-
}
|
|
29
|
-
export interface IValueColor {
|
|
30
|
-
rgb?: IRgb;
|
|
31
|
-
hsl?: IHsl;
|
|
32
|
-
hsv?: IHsv;
|
|
33
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type { IColor } from "./Colors";
|
|
2
|
-
import type { GradientType, RotateDirectionAlt } from "../../Enums";
|
|
3
|
-
import type { RotateDirection } from "../../Enums";
|
|
4
|
-
import type { RangeValue } from "../../Types";
|
|
5
|
-
export interface IGradientColorOpacity {
|
|
6
|
-
value: RangeValue;
|
|
7
|
-
}
|
|
8
|
-
export interface IGradientColor {
|
|
9
|
-
value: IColor;
|
|
10
|
-
stop: number;
|
|
11
|
-
opacity?: IGradientColorOpacity | number;
|
|
12
|
-
}
|
|
13
|
-
export interface IGradientAngle {
|
|
14
|
-
value: number;
|
|
15
|
-
direction: RotateDirection | keyof typeof RotateDirection | RotateDirectionAlt;
|
|
16
|
-
}
|
|
17
|
-
export interface IGradient {
|
|
18
|
-
angle?: IGradientAngle;
|
|
19
|
-
type: GradientType;
|
|
20
|
-
colors: IGradientColor[];
|
|
21
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import type { ICoordinates } from "./ICoordinates";
|
|
2
|
-
import type { Particle } from "../Particle";
|
|
3
|
-
import type { ClickMode, OutModeDirection } from "../../Enums";
|
|
4
|
-
import type { RecursivePartial } from "../../Types";
|
|
5
|
-
import type { IOptions } from "../../Options/Interfaces/IOptions";
|
|
6
|
-
import type { IDelta } from "./IDelta";
|
|
7
|
-
import type { IColor } from "./Colors";
|
|
8
|
-
export interface IContainerPlugin {
|
|
9
|
-
clickPositionValid?: (position: ICoordinates) => boolean;
|
|
10
|
-
draw?: (context: CanvasRenderingContext2D, delta: IDelta) => void;
|
|
11
|
-
drawParticle?: (context: CanvasRenderingContext2D, particle: Particle, delta: IDelta) => void;
|
|
12
|
-
handleClickMode?: (mode: ClickMode | string) => void;
|
|
13
|
-
init?: (options?: RecursivePartial<IOptions>) => void;
|
|
14
|
-
initAsync?: (options?: RecursivePartial<IOptions>) => Promise<void>;
|
|
15
|
-
play?: () => void;
|
|
16
|
-
pause?: () => void;
|
|
17
|
-
particleBounce?: (particle: Particle, delta: IDelta, direction: OutModeDirection) => boolean;
|
|
18
|
-
particleCreated?: (particle: Particle) => void;
|
|
19
|
-
particleDestroyed?: (particle: Particle, override?: boolean) => void;
|
|
20
|
-
particleFillColor?: (particle: Particle) => string | IColor | undefined;
|
|
21
|
-
particleStrokeColor?: (particle: Particle) => string | IColor | undefined;
|
|
22
|
-
particlePosition?: (position?: ICoordinates, particle?: Particle) => ICoordinates | undefined;
|
|
23
|
-
particleUpdate?: (particle: Particle, delta: IDelta) => void;
|
|
24
|
-
particlesInitialization?: () => boolean;
|
|
25
|
-
particlesSetup?: () => void;
|
|
26
|
-
reset?: () => void;
|
|
27
|
-
resize?: () => void;
|
|
28
|
-
start?: () => void;
|
|
29
|
-
startAsync?: () => Promise<void>;
|
|
30
|
-
stop?: () => void;
|
|
31
|
-
update?: (delta: IDelta) => void;
|
|
32
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { Container } from "../Container";
|
|
2
|
-
import type { Particle } from "../Particle";
|
|
3
|
-
import { Vector } from "../Particle/Vector";
|
|
4
|
-
export interface IMovePathGenerator {
|
|
5
|
-
generate: (particle: Particle) => Vector;
|
|
6
|
-
init: (container: Container) => void;
|
|
7
|
-
update: () => void;
|
|
8
|
-
}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import type { IStroke } from "../../Options/Interfaces/Particles/IStroke";
|
|
2
|
-
import type { ICoordinates3d } from "./ICoordinates";
|
|
3
|
-
import type { ShapeType } from "../../Enums";
|
|
4
|
-
import type { IParticleTiltValueAnimation, IParticleValueAnimation } from "./IParticleValueAnimation";
|
|
5
|
-
import type { IShapeValues } from "./IShapeValues";
|
|
6
|
-
import type { IBubbleParticleData } from "./IBubbleParticleData";
|
|
7
|
-
import type { IParticles } from "../../Options/Interfaces/Particles/IParticles";
|
|
8
|
-
import type { IHsl, IRgb } from "./Colors";
|
|
9
|
-
import type { IParticleHslAnimation } from "./IParticleHslAnimation";
|
|
10
|
-
import type { Vector } from "../Particle/Vector";
|
|
11
|
-
import type { IParticleGradientAnimation } from "./IParticleGradientAnimation";
|
|
12
|
-
export interface IParticle {
|
|
13
|
-
misplaced: boolean;
|
|
14
|
-
randomIndexData?: number;
|
|
15
|
-
readonly rollAngle: number;
|
|
16
|
-
readonly rollSpeed: number;
|
|
17
|
-
readonly wobbleAngle: number;
|
|
18
|
-
readonly wobbleSpeed: number;
|
|
19
|
-
readonly attractDistance?: number;
|
|
20
|
-
readonly bubble: IBubbleParticleData;
|
|
21
|
-
readonly close: boolean;
|
|
22
|
-
readonly destroyed: boolean;
|
|
23
|
-
readonly direction: number;
|
|
24
|
-
readonly fill: boolean;
|
|
25
|
-
readonly id: number;
|
|
26
|
-
readonly initialVelocity: Vector;
|
|
27
|
-
readonly offset: Vector;
|
|
28
|
-
readonly color?: IParticleHslAnimation;
|
|
29
|
-
readonly gradient?: IParticleGradientAnimation;
|
|
30
|
-
readonly backColor?: IHsl;
|
|
31
|
-
readonly opacity: IParticleValueAnimation<number>;
|
|
32
|
-
readonly rotate: IParticleValueAnimation<number>;
|
|
33
|
-
readonly size: IParticleValueAnimation<number>;
|
|
34
|
-
readonly tilt: IParticleTiltValueAnimation;
|
|
35
|
-
readonly strokeColor?: IParticleHslAnimation;
|
|
36
|
-
readonly options: IParticles;
|
|
37
|
-
readonly position: Vector;
|
|
38
|
-
readonly shadowColor: IRgb | undefined;
|
|
39
|
-
readonly shape?: ShapeType | string;
|
|
40
|
-
readonly shapeData?: IShapeValues;
|
|
41
|
-
readonly sides: number;
|
|
42
|
-
readonly stroke: IStroke;
|
|
43
|
-
readonly strokeWidth: number;
|
|
44
|
-
readonly velocity: Vector;
|
|
45
|
-
readonly linksDistance?: number;
|
|
46
|
-
readonly linksWidth?: number;
|
|
47
|
-
readonly moveSpeed?: number;
|
|
48
|
-
readonly sizeAnimationSpeed?: number;
|
|
49
|
-
readonly orbitRadius?: number;
|
|
50
|
-
readonly orbitRotation?: number;
|
|
51
|
-
readonly orbitColor?: IHsl;
|
|
52
|
-
getPosition(): ICoordinates3d;
|
|
53
|
-
getRadius(): number;
|
|
54
|
-
getMass(): number;
|
|
55
|
-
getFillColor(): IHsl | undefined;
|
|
56
|
-
getStrokeColor(): IHsl | undefined;
|
|
57
|
-
isVisible(): boolean;
|
|
58
|
-
isInsideCanvas(): boolean;
|
|
59
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { IParticleValueAnimation } from "./IParticleValueAnimation";
|
|
2
|
-
import type { GradientType } from "../../Enums";
|
|
3
|
-
import type { IParticleGradientColorAnimation } from "./IParticleGradientColorAnimation";
|
|
4
|
-
export interface IParticleGradientAnimation {
|
|
5
|
-
angle: IParticleValueAnimation<number>;
|
|
6
|
-
type: GradientType;
|
|
7
|
-
colors: IParticleGradientColorAnimation[];
|
|
8
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { IParticleHslAnimation } from "./IParticleHslAnimation";
|
|
2
|
-
import type { IParticleNumericValueAnimation } from "./IParticleValueAnimation";
|
|
3
|
-
export interface IParticleGradientColorAnimation {
|
|
4
|
-
stop: number;
|
|
5
|
-
value: IParticleHslAnimation;
|
|
6
|
-
opacity?: IParticleNumericValueAnimation;
|
|
7
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { AnimationStatus } from "../../Enums";
|
|
2
|
-
export interface IParticleValueAnimation<T> {
|
|
3
|
-
enable: boolean;
|
|
4
|
-
status?: AnimationStatus;
|
|
5
|
-
velocity?: number;
|
|
6
|
-
value: T;
|
|
7
|
-
loops?: number;
|
|
8
|
-
maxLoops?: number;
|
|
9
|
-
}
|
|
10
|
-
export interface IParticleNumericValueAnimation extends IParticleValueAnimation<number> {
|
|
11
|
-
min: number;
|
|
12
|
-
max: number;
|
|
13
|
-
}
|
|
14
|
-
export interface IParticleTiltValueAnimation extends IParticleValueAnimation<number> {
|
|
15
|
-
sinDirection: number;
|
|
16
|
-
cosDirection: number;
|
|
17
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { Particle } from "../Particle";
|
|
2
|
-
import type { IInteractor } from "./IInteractor";
|
|
3
|
-
import type { IDelta } from "./IDelta";
|
|
4
|
-
export interface IParticlesInteractor extends IInteractor {
|
|
5
|
-
isEnabled(particle: Particle): boolean;
|
|
6
|
-
interact(particle: Particle, delta: IDelta): void;
|
|
7
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { Container } from "../Container";
|
|
2
|
-
import type { IContainerPlugin } from "./IContainerPlugin";
|
|
3
|
-
import type { IOptions } from "../../Options/Interfaces/IOptions";
|
|
4
|
-
import type { RecursivePartial } from "../../Types";
|
|
5
|
-
import type { Options } from "../../Options/Classes/Options";
|
|
6
|
-
export interface IPlugin {
|
|
7
|
-
readonly id: string;
|
|
8
|
-
needsPlugin(options?: RecursivePartial<IOptions>): boolean;
|
|
9
|
-
getPlugin(container: Container): IContainerPlugin;
|
|
10
|
-
loadOptions(options: Options, source?: RecursivePartial<IOptions>): void;
|
|
11
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { ShapeDrawerAfterEffectFunction, ShapeDrawerDestroyFunction, ShapeDrawerDrawFunction, ShapeDrawerInitFunction, ShapeDrawerLoadFunction, ShapeDrawerParticleInitFunction, ShapeDrawerSidesCountFunction } from "../../Types";
|
|
2
|
-
export interface IShapeDrawer {
|
|
3
|
-
getSidesCount?: ShapeDrawerSidesCountFunction;
|
|
4
|
-
init?: ShapeDrawerInitFunction;
|
|
5
|
-
particleInit?: ShapeDrawerParticleInitFunction;
|
|
6
|
-
draw: ShapeDrawerDrawFunction;
|
|
7
|
-
afterEffect?: ShapeDrawerAfterEffectFunction;
|
|
8
|
-
destroy?: ShapeDrawerDestroyFunction;
|
|
9
|
-
loadShape?: ShapeDrawerLoadFunction;
|
|
10
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { IParticles } from "../../Options/Interfaces/Particles/IParticles";
|
|
2
|
-
import type { RecursivePartial } from "../../Types";
|
|
3
|
-
export interface IShapeValues {
|
|
4
|
-
close?: boolean;
|
|
5
|
-
fill?: boolean;
|
|
6
|
-
particles?: RecursivePartial<IParticles>;
|
|
7
|
-
[key: string]: unknown;
|
|
8
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
export * from "./Colors";
|
|
2
|
-
export * from "./Gradients";
|
|
3
|
-
export * from "./IAttract";
|
|
4
|
-
export * from "./IBounds";
|
|
5
|
-
export * from "./IBubble";
|
|
6
|
-
export * from "./IBubbleParticleData";
|
|
7
|
-
export * from "./ICircleBouncer";
|
|
8
|
-
export * from "./IContainerInteractivity";
|
|
9
|
-
export * from "./IContainerPlugin";
|
|
10
|
-
export * from "./ICoordinates";
|
|
11
|
-
export * from "./IDelta";
|
|
12
|
-
export * from "./IDimension";
|
|
13
|
-
export * from "./IDistance";
|
|
14
|
-
export * from "./IExternalInteractor";
|
|
15
|
-
export * from "./IInteractor";
|
|
16
|
-
export * from "./IMouseData";
|
|
17
|
-
export * from "./IMovePathGenerator";
|
|
18
|
-
export * from "./IParticle";
|
|
19
|
-
export * from "./IParticleGradientAnimation";
|
|
20
|
-
export * from "./IParticleGradientColorAnimation";
|
|
21
|
-
export * from "./IParticleHslAnimation";
|
|
22
|
-
export * from "./IParticleLife";
|
|
23
|
-
export * from "./IParticleLoops";
|
|
24
|
-
export * from "./IParticlesInteractor";
|
|
25
|
-
export * from "./IParticleUpdater";
|
|
26
|
-
export * from "./IParticleSpin";
|
|
27
|
-
export * from "./IParticleValueAnimation";
|
|
28
|
-
export * from "./IPlugin";
|
|
29
|
-
export * from "./IRangeValue";
|
|
30
|
-
export * from "./IRectSideResult";
|
|
31
|
-
export * from "./IRepulse";
|
|
32
|
-
export * from "./IShapeDrawer";
|
|
33
|
-
export * from "./IShapeValues";
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Container } from "./Container";
|
|
2
|
-
import type { IOptions } from "../Options/Interfaces/IOptions";
|
|
3
|
-
import type { RecursivePartial } from "../Types";
|
|
4
|
-
import type { Particle } from "./Particle";
|
|
5
|
-
import type { SingleOrMultiple } from "../Types";
|
|
6
|
-
export declare class Loader {
|
|
7
|
-
static dom(): Container[];
|
|
8
|
-
static domItem(index: number): Container | undefined;
|
|
9
|
-
static load(tagId: string, options?: SingleOrMultiple<RecursivePartial<IOptions>>, index?: number): Promise<Container | undefined>;
|
|
10
|
-
static set(id: string, domContainer: HTMLElement, options?: SingleOrMultiple<RecursivePartial<IOptions>>, index?: number): Promise<Container | undefined>;
|
|
11
|
-
static loadJSON(tagId: string, jsonUrl: SingleOrMultiple<string>, index?: number): Promise<Container | undefined>;
|
|
12
|
-
static setJSON(id: string, domContainer: HTMLElement, jsonUrl: SingleOrMultiple<string>, index?: number): Promise<Container | undefined>;
|
|
13
|
-
static setOnClickHandler(callback: (evt: Event, particles?: Particle[]) => void): void;
|
|
14
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { Container } from "../Container";
|
|
2
|
-
import type { Particle } from "../Particle";
|
|
3
|
-
import type { IDelta } from "../Interfaces";
|
|
4
|
-
export declare class Mover {
|
|
5
|
-
private readonly container;
|
|
6
|
-
constructor(container: Container);
|
|
7
|
-
move(particle: Particle, delta: IDelta): void;
|
|
8
|
-
private moveParticle;
|
|
9
|
-
private spin;
|
|
10
|
-
private applyPath;
|
|
11
|
-
private moveParallax;
|
|
12
|
-
private getProximitySpeedFactor;
|
|
13
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import type { ICoordinates } from "../Interfaces";
|
|
2
|
-
export declare class Vector implements ICoordinates {
|
|
3
|
-
static clone(source: Vector): Vector;
|
|
4
|
-
static create(x: number | ICoordinates, y?: number): Vector;
|
|
5
|
-
static get origin(): Vector;
|
|
6
|
-
get angle(): number;
|
|
7
|
-
set angle(angle: number);
|
|
8
|
-
get length(): number;
|
|
9
|
-
set length(length: number);
|
|
10
|
-
x: number;
|
|
11
|
-
y: number;
|
|
12
|
-
protected constructor(x: number | ICoordinates, y?: number);
|
|
13
|
-
add(v: Vector): Vector;
|
|
14
|
-
addTo(v: Vector): void;
|
|
15
|
-
sub(v: Vector): Vector;
|
|
16
|
-
subFrom(v: Vector): void;
|
|
17
|
-
mult(n: number): Vector;
|
|
18
|
-
multTo(n: number): void;
|
|
19
|
-
div(n: number): Vector;
|
|
20
|
-
divTo(n: number): void;
|
|
21
|
-
distanceTo(v: Vector): number;
|
|
22
|
-
getLengthSq(): number;
|
|
23
|
-
distanceToSq(v: Vector): number;
|
|
24
|
-
manhattanDistanceTo(v: Vector): number;
|
|
25
|
-
copy(): Vector;
|
|
26
|
-
setTo(velocity: Vector): void;
|
|
27
|
-
rotate(angle: number): Vector;
|
|
28
|
-
private updateFromAngle;
|
|
29
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { Vector } from "./Vector";
|
|
2
|
-
import type { ICoordinates3d } from "../Interfaces";
|
|
3
|
-
export declare class Vector3d extends Vector implements ICoordinates3d {
|
|
4
|
-
static clone(source: Vector3d): Vector3d;
|
|
5
|
-
static create(x: number | ICoordinates3d, y?: number, z?: number): Vector3d;
|
|
6
|
-
z: number;
|
|
7
|
-
protected constructor(x: number | ICoordinates3d, y?: number, z?: number);
|
|
8
|
-
add(v: Vector): Vector;
|
|
9
|
-
addTo(v: Vector): void;
|
|
10
|
-
sub(v: Vector): Vector;
|
|
11
|
-
subFrom(v: Vector): void;
|
|
12
|
-
mult(n: number): Vector;
|
|
13
|
-
multTo(n: number): void;
|
|
14
|
-
div(n: number): Vector;
|
|
15
|
-
divTo(n: number): void;
|
|
16
|
-
copy(): Vector3d;
|
|
17
|
-
setTo(v: Vector): void;
|
|
18
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import type { Container } from "./Container";
|
|
2
|
-
import type { IParticles } from "../Options/Interfaces/Particles/IParticles";
|
|
3
|
-
import { ParticlesOptions } from "../Options/Classes/Particles/ParticlesOptions";
|
|
4
|
-
import { AlterType, ShapeType } from "../Enums";
|
|
5
|
-
import type { RecursivePartial } from "../Types";
|
|
6
|
-
import type { Stroke } from "../Options/Classes/Particles/Stroke";
|
|
7
|
-
import { Vector } from "./Particle/Vector";
|
|
8
|
-
import type { IBubbleParticleData, ICoordinates, ICoordinates3d, IDelta, IDistance, IHsl, IParticle, IParticleGradientAnimation, IParticleHslAnimation, IParticleLife, IParticleNumericValueAnimation, IParticleSpin, IParticleTiltValueAnimation, IParticleValueAnimation, IRgb, IShapeValues } from "./Interfaces";
|
|
9
|
-
import { Vector3d } from "./Particle/Vector3d";
|
|
10
|
-
export declare class Particle implements IParticle {
|
|
11
|
-
readonly id: number;
|
|
12
|
-
readonly container: Container;
|
|
13
|
-
readonly group?: string | undefined;
|
|
14
|
-
destroyed: boolean;
|
|
15
|
-
lastPathTime: number;
|
|
16
|
-
misplaced: boolean;
|
|
17
|
-
rollAngle: number;
|
|
18
|
-
rollSpeed: number;
|
|
19
|
-
spawning: boolean;
|
|
20
|
-
splitCount: number;
|
|
21
|
-
unbreakable: boolean;
|
|
22
|
-
wobbleAngle: number;
|
|
23
|
-
wobbleDistance: number;
|
|
24
|
-
wobbleSpeed: number;
|
|
25
|
-
readonly pathDelay: number;
|
|
26
|
-
readonly sides: number;
|
|
27
|
-
readonly strokeWidth: number;
|
|
28
|
-
readonly options: ParticlesOptions;
|
|
29
|
-
readonly life: IParticleLife;
|
|
30
|
-
readonly maxDistance: Partial<IDistance>;
|
|
31
|
-
alterValue?: number;
|
|
32
|
-
alterType?: AlterType;
|
|
33
|
-
attractDistance?: number;
|
|
34
|
-
backColor?: IHsl;
|
|
35
|
-
close: boolean;
|
|
36
|
-
fill: boolean;
|
|
37
|
-
randomIndexData?: number;
|
|
38
|
-
linksDistance?: number;
|
|
39
|
-
linksWidth?: number;
|
|
40
|
-
moveDrift?: number;
|
|
41
|
-
moveSpeed?: number;
|
|
42
|
-
maxSpeed?: number;
|
|
43
|
-
orbitRadius?: number;
|
|
44
|
-
orbitRotation?: number;
|
|
45
|
-
sizeAnimationSpeed?: number;
|
|
46
|
-
readonly direction: number;
|
|
47
|
-
readonly stroke: Stroke;
|
|
48
|
-
readonly position: Vector3d;
|
|
49
|
-
readonly offset: Vector;
|
|
50
|
-
readonly shadowColor: IRgb | undefined;
|
|
51
|
-
readonly color?: IParticleHslAnimation;
|
|
52
|
-
readonly gradient?: IParticleGradientAnimation;
|
|
53
|
-
readonly opacity: IParticleNumericValueAnimation;
|
|
54
|
-
readonly rotate: IParticleValueAnimation<number>;
|
|
55
|
-
readonly size: IParticleNumericValueAnimation;
|
|
56
|
-
readonly tilt: IParticleTiltValueAnimation;
|
|
57
|
-
readonly strokeColor?: IParticleHslAnimation;
|
|
58
|
-
readonly orbitColor?: IHsl;
|
|
59
|
-
readonly velocity: Vector;
|
|
60
|
-
readonly shape: ShapeType | string;
|
|
61
|
-
readonly spin?: IParticleSpin;
|
|
62
|
-
readonly initialPosition: Vector;
|
|
63
|
-
readonly initialVelocity: Vector;
|
|
64
|
-
readonly shapeData?: IShapeValues;
|
|
65
|
-
readonly bubble: IBubbleParticleData;
|
|
66
|
-
readonly zIndexFactor: number;
|
|
67
|
-
constructor(id: number, container: Container, position?: ICoordinates, overrideOptions?: RecursivePartial<IParticles>, group?: string | undefined);
|
|
68
|
-
isVisible(): boolean;
|
|
69
|
-
isInsideCanvas(): boolean;
|
|
70
|
-
draw(delta: IDelta): void;
|
|
71
|
-
getPosition(): ICoordinates3d;
|
|
72
|
-
getRadius(): number;
|
|
73
|
-
getMass(): number;
|
|
74
|
-
getFillColor(): IHsl | undefined;
|
|
75
|
-
getStrokeColor(): IHsl | undefined;
|
|
76
|
-
destroy(override?: boolean): void;
|
|
77
|
-
reset(): void;
|
|
78
|
-
private split;
|
|
79
|
-
private calcPosition;
|
|
80
|
-
private checkOverlap;
|
|
81
|
-
private calculateVelocity;
|
|
82
|
-
private loadShapeData;
|
|
83
|
-
private loadLife;
|
|
84
|
-
}
|