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,27 +0,0 @@
|
|
|
1
|
-
import { IEmitter } from "../Interfaces/IEmitter";
|
|
2
|
-
import { RecursivePartial } from "../../../../Types";
|
|
3
|
-
import { ICoordinates } from "../../../../Core/Interfaces";
|
|
4
|
-
import { MoveDirection, MoveDirectionAlt } from "../../../../Enums";
|
|
5
|
-
import { IParticles } from "../../../../Options/Interfaces/Particles/IParticles";
|
|
6
|
-
import { EmitterRate } from "./EmitterRate";
|
|
7
|
-
import { EmitterLife } from "./EmitterLife";
|
|
8
|
-
import { EmitterSize } from "./EmitterSize";
|
|
9
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
10
|
-
import { AnimatableColor } from "../../../../Options/Classes/AnimatableColor";
|
|
11
|
-
import { EmitterShapeType } from "../../Enums";
|
|
12
|
-
export declare class Emitter implements IEmitter, IOptionLoader<IEmitter> {
|
|
13
|
-
autoPlay: boolean;
|
|
14
|
-
size?: EmitterSize;
|
|
15
|
-
direction?: MoveDirection | keyof typeof MoveDirection | MoveDirectionAlt | number;
|
|
16
|
-
fill: boolean;
|
|
17
|
-
life: EmitterLife;
|
|
18
|
-
name?: string;
|
|
19
|
-
particles?: RecursivePartial<IParticles>;
|
|
20
|
-
position?: RecursivePartial<ICoordinates>;
|
|
21
|
-
rate: EmitterRate;
|
|
22
|
-
shape: EmitterShapeType | keyof typeof EmitterShapeType;
|
|
23
|
-
spawnColor?: AnimatableColor;
|
|
24
|
-
startCount: number;
|
|
25
|
-
constructor();
|
|
26
|
-
load(data?: RecursivePartial<IEmitter>): void;
|
|
27
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { IEmitterLife } from "../Interfaces/IEmitterLife";
|
|
2
|
-
import { RecursivePartial } from "../../../../Types";
|
|
3
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
4
|
-
export declare class EmitterLife implements IEmitterLife, IOptionLoader<IEmitterLife> {
|
|
5
|
-
count?: number;
|
|
6
|
-
delay?: number;
|
|
7
|
-
duration?: number;
|
|
8
|
-
wait: boolean;
|
|
9
|
-
constructor();
|
|
10
|
-
load(data?: RecursivePartial<IEmitterLife>): void;
|
|
11
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { IEmitterRate } from "../Interfaces/IEmitterRate";
|
|
2
|
-
import { RangeValue, RecursivePartial } from "../../../../Types";
|
|
3
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
4
|
-
export declare class EmitterRate implements IEmitterRate, IOptionLoader<IEmitterRate> {
|
|
5
|
-
quantity: RangeValue;
|
|
6
|
-
delay: RangeValue;
|
|
7
|
-
constructor();
|
|
8
|
-
load(data?: RecursivePartial<IEmitterRate>): void;
|
|
9
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { IEmitterSize } from "../Interfaces/IEmitterSize";
|
|
2
|
-
import { RecursivePartial } from "../../../../Types";
|
|
3
|
-
import { SizeMode } from "../../../../Enums";
|
|
4
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
5
|
-
export declare class EmitterSize implements IEmitterSize, IOptionLoader<IEmitterSize> {
|
|
6
|
-
mode: SizeMode | keyof typeof SizeMode;
|
|
7
|
-
height: number;
|
|
8
|
-
width: number;
|
|
9
|
-
constructor();
|
|
10
|
-
load(data?: RecursivePartial<IEmitterSize>): void;
|
|
11
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { ICoordinates } from "../../../../Core/Interfaces";
|
|
2
|
-
import { MoveDirection, MoveDirectionAlt } from "../../../../Enums";
|
|
3
|
-
import { IParticles } from "../../../../Options/Interfaces/Particles/IParticles";
|
|
4
|
-
import { IEmitterRate } from "./IEmitterRate";
|
|
5
|
-
import { IEmitterLife } from "./IEmitterLife";
|
|
6
|
-
import { RecursivePartial } from "../../../../Types";
|
|
7
|
-
import { IEmitterSize } from "./IEmitterSize";
|
|
8
|
-
import { IAnimatableColor } from "../../../../Options/Interfaces/IAnimatableColor";
|
|
9
|
-
import { EmitterShapeType } from "../../Enums/EmitterShapeType";
|
|
10
|
-
export interface IEmitter {
|
|
11
|
-
autoPlay: boolean;
|
|
12
|
-
size?: IEmitterSize;
|
|
13
|
-
direction?: MoveDirection | keyof typeof MoveDirection | MoveDirectionAlt | number;
|
|
14
|
-
fill: boolean;
|
|
15
|
-
life: IEmitterLife;
|
|
16
|
-
name?: string;
|
|
17
|
-
particles?: RecursivePartial<IParticles>;
|
|
18
|
-
position?: RecursivePartial<ICoordinates>;
|
|
19
|
-
rate: IEmitterRate;
|
|
20
|
-
shape: EmitterShapeType | keyof typeof EmitterShapeType;
|
|
21
|
-
spawnColor?: IAnimatableColor;
|
|
22
|
-
startCount: number;
|
|
23
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { SingleOrMultiple } from "../../../../Types";
|
|
2
|
-
import { IEmitter } from "./IEmitter";
|
|
3
|
-
import { IInteractivity } from "../../../../Options/Interfaces/Interactivity/IInteractivity";
|
|
4
|
-
import { IModes } from "../../../../Options/Interfaces/Interactivity/Modes/IModes";
|
|
5
|
-
export interface IEmitterOptions {
|
|
6
|
-
emitters: SingleOrMultiple<IEmitter>;
|
|
7
|
-
interactivity: IInteractivity & {
|
|
8
|
-
modes: IModes & {
|
|
9
|
-
emitters: SingleOrMultiple<IEmitter>;
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { IEmitterShape } from "../../IEmitterShape";
|
|
2
|
-
import { ICoordinates } from "../../../../Core/Interfaces";
|
|
3
|
-
export declare class CircleShape implements IEmitterShape {
|
|
4
|
-
randomPosition(position: ICoordinates, offset: ICoordinates, fill: boolean): ICoordinates;
|
|
5
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { IEmitterShape } from "../../IEmitterShape";
|
|
2
|
-
import { ICoordinates } from "../../../../Core/Interfaces";
|
|
3
|
-
export declare class SquareShape implements IEmitterShape {
|
|
4
|
-
randomPosition(position: ICoordinates, offset: ICoordinates, fill: boolean): ICoordinates;
|
|
5
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare enum InlineArrangement {
|
|
2
|
-
equidistant = "equidistant",
|
|
3
|
-
onePerPoint = "one-per-point",
|
|
4
|
-
perPoint = "per-point",
|
|
5
|
-
randomLength = "random-length",
|
|
6
|
-
randomPoint = "random-point"
|
|
7
|
-
}
|
|
8
|
-
export declare type InlineArrangementAlt = "one-per-point" | "per-point" | "random-length" | "random-point";
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { IDraw } from "../Interfaces/IDraw";
|
|
2
|
-
import { DrawStroke } from "./DrawStroke";
|
|
3
|
-
import { RecursivePartial } from "../../../../Types";
|
|
4
|
-
import { OptionsColor } from "../../../../Options/Classes/OptionsColor";
|
|
5
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
6
|
-
export declare class Draw implements IDraw, IOptionLoader<IDraw> {
|
|
7
|
-
lineWidth: number;
|
|
8
|
-
lineColor: string | OptionsColor;
|
|
9
|
-
enable: boolean;
|
|
10
|
-
stroke: DrawStroke;
|
|
11
|
-
constructor();
|
|
12
|
-
load(data?: RecursivePartial<IDraw>): void;
|
|
13
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { IDrawStroke } from "../Interfaces/IDrawStroke";
|
|
2
|
-
import { RecursivePartial } from "../../../../Types";
|
|
3
|
-
import { OptionsColor } from "../../../../Options/Classes/OptionsColor";
|
|
4
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
5
|
-
export declare class DrawStroke implements IDrawStroke, IOptionLoader<IDrawStroke> {
|
|
6
|
-
color: OptionsColor;
|
|
7
|
-
width: number;
|
|
8
|
-
opacity: number;
|
|
9
|
-
constructor();
|
|
10
|
-
load(data?: RecursivePartial<IDrawStroke>): void;
|
|
11
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { IInline } from "../Interfaces/IInline";
|
|
2
|
-
import { InlineArrangement, InlineArrangementAlt } from "../../Enums";
|
|
3
|
-
import { RecursivePartial } from "../../../../Types";
|
|
4
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
5
|
-
export declare class Inline implements IInline, IOptionLoader<IInline> {
|
|
6
|
-
arrangement: InlineArrangement | keyof typeof InlineArrangement | InlineArrangementAlt;
|
|
7
|
-
constructor();
|
|
8
|
-
load(data?: RecursivePartial<IInline>): void;
|
|
9
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ILocalSvg } from "../Interfaces/ILocalSvg";
|
|
2
|
-
import { SingleOrMultiple } from "../../../../Types";
|
|
3
|
-
import { IDimension } from "../../../../Core/Interfaces/IDimension";
|
|
4
|
-
import { RecursivePartial } from "../../../../Types";
|
|
5
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
6
|
-
export declare class LocalSvg implements ILocalSvg, IOptionLoader<ILocalSvg> {
|
|
7
|
-
path: SingleOrMultiple<string>;
|
|
8
|
-
size: IDimension;
|
|
9
|
-
constructor();
|
|
10
|
-
load(data?: RecursivePartial<ILocalSvg>): void;
|
|
11
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { IMove } from "../Interfaces/IMove";
|
|
2
|
-
import { RecursivePartial } from "../../../../Types";
|
|
3
|
-
import { MoveType } from "../../Enums";
|
|
4
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
5
|
-
export declare class Move implements IMove, IOptionLoader<IMove> {
|
|
6
|
-
radius: number;
|
|
7
|
-
type: MoveType | keyof typeof MoveType;
|
|
8
|
-
constructor();
|
|
9
|
-
load(data?: RecursivePartial<IMove>): void;
|
|
10
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { IPolygonMask } from "../Interfaces/IPolygonMask";
|
|
2
|
-
import { InlineArrangement, InlineArrangementAlt, Type } from "../../Enums";
|
|
3
|
-
import { Draw } from "./Draw";
|
|
4
|
-
import { Move } from "./Move";
|
|
5
|
-
import { Inline } from "./Inline";
|
|
6
|
-
import { RecursivePartial } from "../../../../Types";
|
|
7
|
-
import { ICoordinates } from "../../../../Core/Interfaces/ICoordinates";
|
|
8
|
-
import { LocalSvg } from "./LocalSvg";
|
|
9
|
-
import { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
|
|
10
|
-
export declare class PolygonMask implements IPolygonMask, IOptionLoader<IPolygonMask> {
|
|
11
|
-
inlineArrangement: InlineArrangement | keyof typeof InlineArrangement | InlineArrangementAlt;
|
|
12
|
-
draw: Draw;
|
|
13
|
-
enable: boolean;
|
|
14
|
-
inline: Inline;
|
|
15
|
-
move: Move;
|
|
16
|
-
position?: ICoordinates;
|
|
17
|
-
scale: number;
|
|
18
|
-
type: Type;
|
|
19
|
-
url?: string;
|
|
20
|
-
data?: string | LocalSvg;
|
|
21
|
-
constructor();
|
|
22
|
-
load(data?: RecursivePartial<IPolygonMask>): void;
|
|
23
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { IDraw } from "./IDraw";
|
|
2
|
-
import { IMove } from "./IMove";
|
|
3
|
-
import { InlineArrangement, InlineArrangementAlt } from "../../Enums";
|
|
4
|
-
import { IInline } from "./IInline";
|
|
5
|
-
import { ICoordinates } from "../../../../Core/Interfaces/ICoordinates";
|
|
6
|
-
import { ILocalSvg } from "./ILocalSvg";
|
|
7
|
-
import { Type } from "../../Enums";
|
|
8
|
-
export interface IPolygonMask {
|
|
9
|
-
draw: IDraw;
|
|
10
|
-
enable: boolean;
|
|
11
|
-
inline: IInline;
|
|
12
|
-
inlineArrangement: InlineArrangement | keyof typeof InlineArrangement | InlineArrangementAlt;
|
|
13
|
-
move: IMove;
|
|
14
|
-
position?: ICoordinates;
|
|
15
|
-
scale: number;
|
|
16
|
-
type: Type;
|
|
17
|
-
url?: string;
|
|
18
|
-
data?: string | ILocalSvg;
|
|
19
|
-
}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { Container } from "../../Core/Container";
|
|
2
|
-
import { ICoordinates } from "../../Core/Interfaces/ICoordinates";
|
|
3
|
-
import { Particle } from "../../Core/Particle";
|
|
4
|
-
import { IDimension } from "../../Core/Interfaces/IDimension";
|
|
5
|
-
import { ISvgPath } from "./Interfaces/ISvgPath";
|
|
6
|
-
import { IContainerPlugin } from "../../Core/Interfaces/IContainerPlugin";
|
|
7
|
-
import { IOptions } from "../../Options/Interfaces/IOptions";
|
|
8
|
-
import { RecursivePartial } from "../../Types";
|
|
9
|
-
import { IPolygonMask } from "./Options/Interfaces/IPolygonMask";
|
|
10
|
-
import { PolygonMask } from "./Options/Classes/PolygonMask";
|
|
11
|
-
import { IDelta } from "../../Core/Interfaces/IDelta";
|
|
12
|
-
import { OutModeDirection } from "../../Enums";
|
|
13
|
-
declare type IPolygonMaskOptions = IOptions & {
|
|
14
|
-
polygon: IPolygonMask;
|
|
15
|
-
};
|
|
16
|
-
export declare class PolygonMaskInstance implements IContainerPlugin {
|
|
17
|
-
private readonly container;
|
|
18
|
-
redrawTimeout?: number;
|
|
19
|
-
raw?: ICoordinates[];
|
|
20
|
-
paths?: ISvgPath[];
|
|
21
|
-
dimension: IDimension;
|
|
22
|
-
offset?: ICoordinates;
|
|
23
|
-
readonly path2DSupported: boolean;
|
|
24
|
-
readonly options: PolygonMask;
|
|
25
|
-
private polygonMaskMoveRadius;
|
|
26
|
-
constructor(container: Container);
|
|
27
|
-
initAsync(options?: RecursivePartial<IPolygonMaskOptions>): Promise<void>;
|
|
28
|
-
resize(): void;
|
|
29
|
-
stop(): void;
|
|
30
|
-
particlesInitialization(): boolean;
|
|
31
|
-
particlePosition(position?: ICoordinates): ICoordinates | undefined;
|
|
32
|
-
particleBounce(particle: Particle, delta: IDelta, direction: OutModeDirection): boolean;
|
|
33
|
-
clickPositionValid(position: ICoordinates): boolean;
|
|
34
|
-
draw(context: CanvasRenderingContext2D): void;
|
|
35
|
-
private polygonBounce;
|
|
36
|
-
private checkInsidePolygon;
|
|
37
|
-
private parseSvgPath;
|
|
38
|
-
private downloadSvgPath;
|
|
39
|
-
private drawPoints;
|
|
40
|
-
private randomPoint;
|
|
41
|
-
private getRandomPoint;
|
|
42
|
-
private getRandomPointByLength;
|
|
43
|
-
private getEquidistantPointByIndex;
|
|
44
|
-
private getPointByIndex;
|
|
45
|
-
private createPath2D;
|
|
46
|
-
private initRawData;
|
|
47
|
-
}
|
|
48
|
-
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { IParticle, IShapeDrawer } from "../../Core/Interfaces";
|
|
2
|
-
import { Container } from "../../Core/Container";
|
|
3
|
-
import { IImage } from "./Utils";
|
|
4
|
-
import { Particle } from "../../Core/Particle";
|
|
5
|
-
interface ContainerImage {
|
|
6
|
-
id: string;
|
|
7
|
-
images: IImage[];
|
|
8
|
-
}
|
|
9
|
-
export declare class ImageDrawer implements IShapeDrawer {
|
|
10
|
-
private "ImageDrawer.#private";
|
|
11
|
-
constructor();
|
|
12
|
-
getSidesCount(): number;
|
|
13
|
-
getImages(container: Container): ContainerImage;
|
|
14
|
-
addImage(container: Container, image: IImage): void;
|
|
15
|
-
init(container: Container): Promise<void>;
|
|
16
|
-
destroy(): void;
|
|
17
|
-
private loadImagesFromParticlesOptions;
|
|
18
|
-
private loadImageShape;
|
|
19
|
-
draw(context: CanvasRenderingContext2D, particle: IParticle, radius: number, opacity: number): void;
|
|
20
|
-
loadShape(particle: Particle): void;
|
|
21
|
-
}
|
|
22
|
-
export {};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { IHsl, IParticle } from "../../Core/Interfaces";
|
|
2
|
-
export interface IImage {
|
|
3
|
-
source: string;
|
|
4
|
-
type: string;
|
|
5
|
-
element?: HTMLImageElement;
|
|
6
|
-
svgData?: string;
|
|
7
|
-
}
|
|
8
|
-
export interface IParticleImage {
|
|
9
|
-
source: string;
|
|
10
|
-
data: IImage;
|
|
11
|
-
ratio: number;
|
|
12
|
-
element?: HTMLImageElement;
|
|
13
|
-
loaded?: boolean;
|
|
14
|
-
replaceColor: boolean;
|
|
15
|
-
}
|
|
16
|
-
export interface ContainerImage {
|
|
17
|
-
id: string;
|
|
18
|
-
images: IImage[];
|
|
19
|
-
}
|
|
20
|
-
export declare type IImageParticle = IParticle & {
|
|
21
|
-
image: IParticleImage;
|
|
22
|
-
};
|
|
23
|
-
export declare function loadImage(source: string): Promise<IImage | undefined>;
|
|
24
|
-
export declare function downloadSvgImage(source: string): Promise<IImage | undefined>;
|
|
25
|
-
export declare function replaceColorSvg(imageShape: IImage, color: IHsl, opacity: number): string;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ISide } from "./PolygonDrawerBase";
|
|
2
|
-
import { PolygonDrawerBase } from "./PolygonDrawerBase";
|
|
3
|
-
import { ICoordinates, IParticle } from "../../Core/Interfaces";
|
|
4
|
-
export declare class PolygonDrawer extends PolygonDrawerBase {
|
|
5
|
-
getSidesData(particle: IParticle, radius: number): ISide;
|
|
6
|
-
getCenter(particle: IParticle, radius: number): ICoordinates;
|
|
7
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { ICoordinates, IParticle, IShapeDrawer } from "../../Core/Interfaces";
|
|
2
|
-
export interface ISideCount {
|
|
3
|
-
numerator: number;
|
|
4
|
-
denominator: number;
|
|
5
|
-
}
|
|
6
|
-
export interface ISide {
|
|
7
|
-
count: ISideCount;
|
|
8
|
-
length: number;
|
|
9
|
-
}
|
|
10
|
-
export declare abstract class PolygonDrawerBase implements IShapeDrawer {
|
|
11
|
-
getSidesCount(particle: IParticle): number;
|
|
12
|
-
draw(context: CanvasRenderingContext2D, particle: IParticle, radius: number): void;
|
|
13
|
-
abstract getSidesData(particle: IParticle, radius: number): ISide;
|
|
14
|
-
abstract getCenter(particle: IParticle, radius: number): ICoordinates;
|
|
15
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { ISide } from "./PolygonDrawerBase";
|
|
2
|
-
import { ICoordinates, IParticle } from "../../Core/Interfaces";
|
|
3
|
-
import { PolygonDrawerBase } from "./PolygonDrawerBase";
|
|
4
|
-
export declare class TriangleDrawer extends PolygonDrawerBase {
|
|
5
|
-
getSidesCount(): number;
|
|
6
|
-
getSidesData(particle: IParticle, radius: number): ISide;
|
|
7
|
-
getCenter(particle: IParticle, radius: number): ICoordinates;
|
|
8
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IParticle, IShapeDrawer } from "../../Core/Interfaces";
|
|
2
|
-
import { Container } from "../../Core/Container";
|
|
3
|
-
export declare const validTypes: string[];
|
|
4
|
-
export declare class TextDrawer implements IShapeDrawer {
|
|
5
|
-
getSidesCount(): number;
|
|
6
|
-
init(container: Container): Promise<void>;
|
|
7
|
-
draw(context: CanvasRenderingContext2D, particle: IParticle, radius: number, opacity: number): void;
|
|
8
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { IParticle } from "../Core/Interfaces/IParticle";
|
|
2
|
-
import { Container } from "../Core/Container";
|
|
3
|
-
import { IDelta } from "../Core/Interfaces/IDelta";
|
|
4
|
-
import { Particle } from "../Core/Particle";
|
|
5
|
-
export declare type ShapeDrawerDrawFunction = (context: CanvasRenderingContext2D, particle: IParticle, radius: number, opacity: number, delta: IDelta, pixelRatio: number) => void;
|
|
6
|
-
export declare type ShapeDrawerInitFunction = (container: Container) => Promise<void>;
|
|
7
|
-
export declare type ShapeDrawerParticleInitFunction = (container: Container, particle: IParticle) => void;
|
|
8
|
-
export declare type ShapeDrawerAfterEffectFunction = (context: CanvasRenderingContext2D, particle: IParticle, radius: number, opacity: number, delta: IDelta, pixelRatio: number) => void;
|
|
9
|
-
export declare type ShapeDrawerDestroyFunction = (container: Container) => void;
|
|
10
|
-
export declare type ShapeDrawerSidesCountFunction = (particle: IParticle) => number;
|
|
11
|
-
export declare type ShapeDrawerLoadFunction = (particle: Particle) => void;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare type SingleOrMultiple<T> = T | T[];
|