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.
Files changed (4007) hide show
  1. package/167.js +1775 -0
  2. package/Core/Canvas.d.ts +0 -1
  3. package/Core/Canvas.js +37 -56
  4. package/Core/Container.js +66 -81
  5. package/Core/Interfaces/IParticle.d.ts +11 -15
  6. package/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
  7. package/Core/Interfaces/IParticleRetinaProps.js +2 -0
  8. package/Core/Interfaces/IParticleRoll.d.ts +9 -0
  9. package/Core/Interfaces/IParticleRoll.js +2 -0
  10. package/Core/Interfaces/IParticleUpdater.d.ts +3 -0
  11. package/Core/Interfaces/IParticleWobble.d.ts +4 -0
  12. package/Core/Interfaces/IParticleWobble.js +2 -0
  13. package/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
  14. package/Core/Interfaces/IParticlesFrequencies.js +2 -0
  15. package/Core/Interfaces/index.d.ts +3 -2
  16. package/Core/Interfaces/index.js +3 -2
  17. package/Core/Loader.js +66 -83
  18. package/Core/Particle/Mover.js +14 -13
  19. package/Core/Particle/Vector.js +2 -2
  20. package/Core/Particle.d.ts +16 -28
  21. package/Core/Particle.js +76 -280
  22. package/Core/Particles.d.ts +2 -3
  23. package/Core/Particles.js +16 -14
  24. package/Core/Retina.js +12 -14
  25. package/Enums/Modes/RollMode.d.ts +5 -0
  26. package/Enums/Modes/RollMode.js +9 -0
  27. package/Enums/Modes/index.d.ts +1 -0
  28. package/Enums/Modes/index.js +1 -0
  29. package/Interactions/External/Attract/Attractor.js +5 -5
  30. package/Interactions/External/Bounce/Bouncer.js +7 -7
  31. package/Interactions/External/Bubble/Bubbler.js +21 -20
  32. package/Interactions/External/Connect/Connector.js +1 -1
  33. package/Interactions/External/Grab/Grabber.js +4 -4
  34. package/Interactions/External/Repulse/Repulser.js +8 -8
  35. package/Interactions/External/Trail/TrailMaker.js +2 -2
  36. package/Interactions/Particles/Attract/Attractor.js +2 -2
  37. package/Interactions/Particles/Collisions/Collider.js +4 -4
  38. package/Interactions/Particles/Links/LinkInstance.js +11 -11
  39. package/Interactions/Particles/Links/Linker.js +6 -6
  40. package/Interactions/Particles/Links/index.js +1 -1
  41. package/Options/Classes/AnimatableColor.d.ts +2 -2
  42. package/Options/Classes/AnimatableColor.js +8 -2
  43. package/Options/Classes/AnimatableGradient.js +1 -1
  44. package/Options/Classes/ColorAnimation.js +1 -1
  45. package/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
  46. package/Options/Classes/Interactivity/Modes/Trail.js +1 -1
  47. package/Options/Classes/ManualParticle.js +1 -1
  48. package/Options/Classes/Options.d.ts +4 -1
  49. package/Options/Classes/Options.js +25 -12
  50. package/Options/Classes/OptionsColor.d.ts +1 -1
  51. package/Options/Classes/OptionsColor.js +2 -1
  52. package/Options/Classes/Particles/Destroy/Split.js +1 -1
  53. package/Options/Classes/Particles/Move/Move.js +3 -3
  54. package/Options/Classes/Particles/Move/Path/Path.js +1 -1
  55. package/Options/Classes/Particles/Move/Spin.js +2 -2
  56. package/Options/Classes/Particles/Opacity/Opacity.js +1 -1
  57. package/Options/Classes/Particles/ParticlesOptions.js +2 -2
  58. package/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
  59. package/Options/Classes/Particles/Roll/Roll.js +6 -1
  60. package/Options/Classes/Particles/Shape/Shape.js +5 -5
  61. package/Options/Classes/Particles/Size/Size.js +1 -1
  62. package/Options/Classes/Particles/Wobble/Wobble.js +2 -2
  63. package/Options/Classes/Responsive.js +1 -1
  64. package/Options/Classes/Theme/Theme.js +1 -1
  65. package/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
  66. package/Options/Classes/Theme/ThemeDefault.js +7 -3
  67. package/Options/Classes/ValueWithRandom.js +1 -1
  68. package/Options/Interfaces/IOptions.d.ts +3 -3
  69. package/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
  70. package/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
  71. package/Plugins/Absorbers/AbsorberInstance.js +9 -8
  72. package/Plugins/Absorbers/Absorbers.js +2 -2
  73. package/Plugins/Absorbers/plugin.js +1 -1
  74. package/Plugins/Emitters/EmitterInstance.js +10 -10
  75. package/Plugins/Emitters/Emitters.js +3 -3
  76. package/Plugins/Emitters/Options/Classes/Emitter.js +1 -1
  77. package/Plugins/Emitters/Options/Classes/EmitterRate.js +2 -2
  78. package/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
  79. package/Plugins/Emitters/plugin.js +1 -1
  80. package/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
  81. package/Plugins/PolygonMask/Options/Classes/DrawStroke.js +1 -1
  82. package/Plugins/PolygonMask/Options/Classes/PolygonMask.js +1 -1
  83. package/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
  84. package/Plugins/PolygonMask/PolygonMaskInstance.js +53 -178
  85. package/Plugins/PolygonMask/pathseg.d.ts +0 -0
  86. package/Plugins/PolygonMask/pathseg.js +1532 -0
  87. package/Plugins/PolygonMask/plugin.d.ts +1 -1
  88. package/Plugins/PolygonMask/plugin.js +23 -1
  89. package/Plugins/PolygonMask/types.d.ts +8 -0
  90. package/Plugins/PolygonMask/types.js +2 -0
  91. package/Plugins/PolygonMask/utils.d.ts +11 -0
  92. package/Plugins/PolygonMask/utils.js +121 -0
  93. package/README.md +0 -6
  94. package/Shapes/Image/ImageDrawer.js +68 -83
  95. package/Shapes/Image/Utils.js +19 -30
  96. package/Shapes/Text/TextDrawer.js +15 -26
  97. package/Updaters/Angle/AngleUpdater.d.ts +4 -0
  98. package/Updaters/Angle/AngleUpdater.js +46 -10
  99. package/Updaters/Angle/index.js +1 -1
  100. package/Updaters/Color/ColorUpdater.d.ts +4 -0
  101. package/Updaters/Color/ColorUpdater.js +10 -1
  102. package/Updaters/Color/index.js +1 -1
  103. package/Updaters/Life/LifeUpdater.d.ts +1 -0
  104. package/Updaters/Life/LifeUpdater.js +7 -5
  105. package/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
  106. package/Updaters/Opacity/OpacityUpdater.js +46 -1
  107. package/Updaters/Opacity/index.js +1 -1
  108. package/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
  109. package/Updaters/OutModes/OutOfCanvasUpdater.js +9 -7
  110. package/Updaters/OutModes/Utils.js +2 -2
  111. package/Updaters/Roll/RollUpdater.d.ts +1 -0
  112. package/Updaters/Roll/RollUpdater.js +42 -6
  113. package/Updaters/Size/SizeUpdater.d.ts +1 -0
  114. package/Updaters/Size/SizeUpdater.js +3 -1
  115. package/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
  116. package/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
  117. package/Updaters/StrokeColor/index.js +1 -1
  118. package/Updaters/Tilt/TiltUpdater.d.ts +4 -0
  119. package/Updaters/Tilt/TiltUpdater.js +37 -0
  120. package/Updaters/Tilt/index.js +1 -1
  121. package/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
  122. package/Updaters/Wobble/WobbleUpdater.js +31 -11
  123. package/Updaters/Wobble/index.js +1 -1
  124. package/Utils/CanvasUtils.d.ts +2 -0
  125. package/Utils/CanvasUtils.js +36 -24
  126. package/Utils/Circle.js +1 -1
  127. package/Utils/ColorUtils.js +7 -7
  128. package/Utils/EventListeners.d.ts +2 -0
  129. package/Utils/EventListeners.js +16 -1
  130. package/Utils/NumberUtils.js +4 -4
  131. package/Utils/QuadTree.js +1 -1
  132. package/Utils/Utils.d.ts +1 -27
  133. package/Utils/Utils.js +11 -22
  134. package/browser/Core/Canvas.d.ts +0 -1
  135. package/browser/Core/Canvas.js +17 -36
  136. package/browser/Core/Container.js +64 -79
  137. package/browser/Core/Interfaces/IParticle.d.ts +11 -15
  138. package/browser/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
  139. package/browser/Core/Interfaces/IParticleRetinaProps.js +1 -0
  140. package/browser/Core/Interfaces/IParticleRoll.d.ts +9 -0
  141. package/browser/Core/Interfaces/IParticleRoll.js +1 -0
  142. package/browser/Core/Interfaces/IParticleUpdater.d.ts +3 -0
  143. package/browser/Core/Interfaces/IParticleWobble.d.ts +4 -0
  144. package/browser/Core/Interfaces/IParticleWobble.js +1 -0
  145. package/browser/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
  146. package/browser/Core/Interfaces/IParticlesFrequencies.js +1 -0
  147. package/browser/Core/Interfaces/index.d.ts +3 -2
  148. package/browser/Core/Interfaces/index.js +3 -2
  149. package/browser/Core/Loader.js +66 -83
  150. package/browser/Core/Particle/Mover.js +8 -7
  151. package/browser/Core/Particle/Vector.js +2 -2
  152. package/browser/Core/Particle.d.ts +16 -28
  153. package/browser/Core/Particle.js +60 -264
  154. package/browser/Core/Particles.d.ts +2 -3
  155. package/browser/Core/Particles.js +11 -9
  156. package/browser/Core/Retina.js +10 -12
  157. package/browser/Enums/Modes/RollMode.d.ts +5 -0
  158. package/browser/Enums/Modes/RollMode.js +6 -0
  159. package/browser/Enums/Modes/index.d.ts +1 -0
  160. package/browser/Enums/Modes/index.js +1 -0
  161. package/browser/Interactions/External/Bounce/Bouncer.js +1 -1
  162. package/browser/Interactions/External/Bubble/Bubbler.js +4 -3
  163. package/browser/Interactions/External/Repulse/Repulser.js +1 -1
  164. package/browser/Interactions/Particles/Attract/Attractor.js +1 -1
  165. package/browser/Interactions/Particles/Links/LinkInstance.js +2 -2
  166. package/browser/Interactions/Particles/Links/Linker.js +1 -1
  167. package/browser/Options/Classes/AnimatableColor.d.ts +2 -2
  168. package/browser/Options/Classes/AnimatableColor.js +8 -2
  169. package/browser/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
  170. package/browser/Options/Classes/Options.d.ts +4 -1
  171. package/browser/Options/Classes/Options.js +25 -12
  172. package/browser/Options/Classes/OptionsColor.d.ts +1 -1
  173. package/browser/Options/Classes/OptionsColor.js +2 -1
  174. package/browser/Options/Classes/Particles/ParticlesOptions.js +1 -1
  175. package/browser/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
  176. package/browser/Options/Classes/Particles/Roll/Roll.js +5 -0
  177. package/browser/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
  178. package/browser/Options/Classes/Theme/ThemeDefault.js +6 -2
  179. package/browser/Options/Interfaces/IOptions.d.ts +3 -3
  180. package/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
  181. package/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
  182. package/browser/Plugins/Absorbers/AbsorberInstance.js +2 -1
  183. package/browser/Plugins/Emitters/EmitterInstance.js +1 -1
  184. package/browser/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
  185. package/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
  186. package/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
  187. package/browser/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
  188. package/browser/Plugins/PolygonMask/pathseg.d.ts +0 -0
  189. package/browser/Plugins/PolygonMask/pathseg.js +1532 -0
  190. package/browser/Plugins/PolygonMask/plugin.d.ts +1 -1
  191. package/browser/Plugins/PolygonMask/plugin.js +4 -1
  192. package/browser/Plugins/PolygonMask/types.d.ts +8 -0
  193. package/browser/Plugins/PolygonMask/types.js +1 -0
  194. package/browser/Plugins/PolygonMask/utils.d.ts +11 -0
  195. package/browser/Plugins/PolygonMask/utils.js +113 -0
  196. package/browser/Shapes/Image/ImageDrawer.js +67 -82
  197. package/browser/Shapes/Image/Utils.js +17 -28
  198. package/browser/Shapes/Text/TextDrawer.js +14 -25
  199. package/browser/Updaters/Angle/AngleUpdater.d.ts +4 -0
  200. package/browser/Updaters/Angle/AngleUpdater.js +47 -11
  201. package/browser/Updaters/Angle/index.js +1 -1
  202. package/browser/Updaters/Color/ColorUpdater.d.ts +4 -0
  203. package/browser/Updaters/Color/ColorUpdater.js +10 -1
  204. package/browser/Updaters/Color/index.js +1 -1
  205. package/browser/Updaters/Life/LifeUpdater.d.ts +1 -0
  206. package/browser/Updaters/Life/LifeUpdater.js +2 -0
  207. package/browser/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
  208. package/browser/Updaters/Opacity/OpacityUpdater.js +47 -2
  209. package/browser/Updaters/Opacity/index.js +1 -1
  210. package/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
  211. package/browser/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
  212. package/browser/Updaters/Roll/RollUpdater.d.ts +1 -0
  213. package/browser/Updaters/Roll/RollUpdater.js +42 -6
  214. package/browser/Updaters/Size/SizeUpdater.d.ts +1 -0
  215. package/browser/Updaters/Size/SizeUpdater.js +2 -0
  216. package/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
  217. package/browser/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
  218. package/browser/Updaters/StrokeColor/index.js +1 -1
  219. package/browser/Updaters/Tilt/TiltUpdater.d.ts +4 -0
  220. package/browser/Updaters/Tilt/TiltUpdater.js +38 -1
  221. package/browser/Updaters/Tilt/index.js +1 -1
  222. package/browser/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
  223. package/browser/Updaters/Wobble/WobbleUpdater.js +31 -11
  224. package/browser/Updaters/Wobble/index.js +1 -1
  225. package/browser/Utils/CanvasUtils.d.ts +2 -0
  226. package/browser/Utils/CanvasUtils.js +19 -8
  227. package/browser/Utils/EventListeners.d.ts +2 -0
  228. package/browser/Utils/EventListeners.js +15 -0
  229. package/browser/Utils/NumberUtils.js +4 -4
  230. package/browser/Utils/Utils.d.ts +1 -27
  231. package/browser/Utils/Utils.js +6 -17
  232. package/browser/index.d.ts +5 -5
  233. package/browser/index.js +5 -5
  234. package/browser/index.slim.d.ts +5 -5
  235. package/browser/index.slim.js +5 -5
  236. package/browser/main.js +8 -25
  237. package/esm/Core/Canvas.d.ts +0 -1
  238. package/esm/Core/Canvas.js +17 -36
  239. package/esm/Core/Container.js +64 -79
  240. package/esm/Core/Interfaces/IParticle.d.ts +11 -15
  241. package/esm/Core/Interfaces/IParticleRetinaProps.d.ts +12 -0
  242. package/esm/Core/Interfaces/IParticleRetinaProps.js +1 -0
  243. package/esm/Core/Interfaces/IParticleRoll.d.ts +9 -0
  244. package/esm/Core/Interfaces/IParticleRoll.js +1 -0
  245. package/esm/Core/Interfaces/IParticleUpdater.d.ts +3 -0
  246. package/esm/Core/Interfaces/IParticleWobble.d.ts +4 -0
  247. package/esm/Core/Interfaces/IParticleWobble.js +1 -0
  248. package/esm/Core/Interfaces/IParticlesFrequencies.d.ts +4 -0
  249. package/esm/Core/Interfaces/IParticlesFrequencies.js +1 -0
  250. package/esm/Core/Interfaces/index.d.ts +3 -2
  251. package/esm/Core/Interfaces/index.js +3 -2
  252. package/esm/Core/Loader.js +66 -83
  253. package/esm/Core/Particle/Mover.js +8 -7
  254. package/esm/Core/Particle/Vector.js +2 -2
  255. package/esm/Core/Particle.d.ts +16 -28
  256. package/esm/Core/Particle.js +60 -264
  257. package/esm/Core/Particles.d.ts +2 -3
  258. package/esm/Core/Particles.js +11 -9
  259. package/esm/Core/Retina.js +10 -12
  260. package/esm/Enums/Modes/RollMode.d.ts +5 -0
  261. package/esm/Enums/Modes/RollMode.js +6 -0
  262. package/esm/Enums/Modes/index.d.ts +1 -0
  263. package/esm/Enums/Modes/index.js +1 -0
  264. package/esm/Interactions/External/Bounce/Bouncer.js +1 -1
  265. package/esm/Interactions/External/Bubble/Bubbler.js +4 -3
  266. package/esm/Interactions/External/Repulse/Repulser.js +1 -1
  267. package/esm/Interactions/Particles/Attract/Attractor.js +1 -1
  268. package/esm/Interactions/Particles/Links/LinkInstance.js +2 -2
  269. package/esm/Interactions/Particles/Links/Linker.js +1 -1
  270. package/esm/Options/Classes/AnimatableColor.d.ts +2 -2
  271. package/esm/Options/Classes/AnimatableColor.js +8 -2
  272. package/esm/Options/Classes/FullScreen/FullScreen.d.ts +2 -2
  273. package/esm/Options/Classes/Options.d.ts +4 -1
  274. package/esm/Options/Classes/Options.js +25 -12
  275. package/esm/Options/Classes/OptionsColor.d.ts +1 -1
  276. package/esm/Options/Classes/OptionsColor.js +2 -1
  277. package/esm/Options/Classes/Particles/ParticlesOptions.js +1 -1
  278. package/esm/Options/Classes/Particles/Roll/Roll.d.ts +2 -0
  279. package/esm/Options/Classes/Particles/Roll/Roll.js +5 -0
  280. package/esm/Options/Classes/Theme/ThemeDefault.d.ts +2 -1
  281. package/esm/Options/Classes/Theme/ThemeDefault.js +6 -2
  282. package/esm/Options/Interfaces/IOptions.d.ts +3 -3
  283. package/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +3 -1
  284. package/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +1 -0
  285. package/esm/Plugins/Absorbers/AbsorberInstance.js +2 -1
  286. package/esm/Plugins/Emitters/EmitterInstance.js +1 -1
  287. package/esm/Plugins/Emitters/Shapes/Circle/CircleShape.js +1 -1
  288. package/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +1 -0
  289. package/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +2 -10
  290. package/esm/Plugins/PolygonMask/PolygonMaskInstance.js +44 -169
  291. package/esm/Plugins/PolygonMask/pathseg.d.ts +0 -0
  292. package/esm/Plugins/PolygonMask/pathseg.js +1532 -0
  293. package/esm/Plugins/PolygonMask/plugin.d.ts +1 -1
  294. package/esm/Plugins/PolygonMask/plugin.js +4 -1
  295. package/esm/Plugins/PolygonMask/types.d.ts +8 -0
  296. package/esm/Plugins/PolygonMask/types.js +1 -0
  297. package/esm/Plugins/PolygonMask/utils.d.ts +11 -0
  298. package/esm/Plugins/PolygonMask/utils.js +113 -0
  299. package/esm/Shapes/Image/ImageDrawer.js +67 -82
  300. package/esm/Shapes/Image/Utils.js +17 -28
  301. package/esm/Shapes/Text/TextDrawer.js +14 -25
  302. package/esm/Updaters/Angle/AngleUpdater.d.ts +4 -0
  303. package/esm/Updaters/Angle/AngleUpdater.js +47 -11
  304. package/esm/Updaters/Angle/index.js +1 -1
  305. package/esm/Updaters/Color/ColorUpdater.d.ts +4 -0
  306. package/esm/Updaters/Color/ColorUpdater.js +10 -1
  307. package/esm/Updaters/Color/index.js +1 -1
  308. package/esm/Updaters/Life/LifeUpdater.d.ts +1 -0
  309. package/esm/Updaters/Life/LifeUpdater.js +2 -0
  310. package/esm/Updaters/Opacity/OpacityUpdater.d.ts +4 -0
  311. package/esm/Updaters/Opacity/OpacityUpdater.js +47 -2
  312. package/esm/Updaters/Opacity/index.js +1 -1
  313. package/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +1 -0
  314. package/esm/Updaters/OutModes/OutOfCanvasUpdater.js +2 -0
  315. package/esm/Updaters/Roll/RollUpdater.d.ts +1 -0
  316. package/esm/Updaters/Roll/RollUpdater.js +42 -6
  317. package/esm/Updaters/Size/SizeUpdater.d.ts +1 -0
  318. package/esm/Updaters/Size/SizeUpdater.js +2 -0
  319. package/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +5 -1
  320. package/esm/Updaters/StrokeColor/StrokeColorUpdater.js +28 -12
  321. package/esm/Updaters/StrokeColor/index.js +1 -1
  322. package/esm/Updaters/Tilt/TiltUpdater.d.ts +4 -0
  323. package/esm/Updaters/Tilt/TiltUpdater.js +38 -1
  324. package/esm/Updaters/Tilt/index.js +1 -1
  325. package/esm/Updaters/Wobble/WobbleUpdater.d.ts +12 -2
  326. package/esm/Updaters/Wobble/WobbleUpdater.js +31 -11
  327. package/esm/Updaters/Wobble/index.js +1 -1
  328. package/esm/Utils/CanvasUtils.d.ts +2 -0
  329. package/esm/Utils/CanvasUtils.js +19 -8
  330. package/esm/Utils/EventListeners.d.ts +2 -0
  331. package/esm/Utils/EventListeners.js +15 -0
  332. package/esm/Utils/NumberUtils.js +4 -4
  333. package/esm/Utils/Utils.d.ts +1 -27
  334. package/esm/Utils/Utils.js +6 -17
  335. package/esm/index.d.ts +5 -5
  336. package/esm/index.js +5 -5
  337. package/esm/index.slim.d.ts +5 -5
  338. package/esm/index.slim.js +5 -5
  339. package/esm/main.js +8 -25
  340. package/full.js +4 -4
  341. package/index.d.ts +5 -5
  342. package/index.js +7 -23
  343. package/index.slim.d.ts +5 -5
  344. package/index.slim.js +7 -23
  345. package/main.js +8 -25
  346. package/package.json +1 -4
  347. package/report.html +2 -2
  348. package/report.slim.html +2 -2
  349. package/slim.js +27 -27
  350. package/tsparticles.js +1139 -1132
  351. package/tsparticles.min.js +2 -2
  352. package/tsparticles.slim.js +830 -1035
  353. package/tsparticles.slim.min.js +2 -2
  354. package/ts3.4/Core/Canvas.d.ts +0 -36
  355. package/ts3.4/Core/Container.d.ts +0 -64
  356. package/ts3.4/Core/ExternalInteractorBase.d.ts +0 -12
  357. package/ts3.4/Core/FrameManager.d.ts +0 -6
  358. package/ts3.4/Core/InteractionManager.d.ts +0 -11
  359. package/ts3.4/Core/Interfaces/Colors.d.ts +0 -33
  360. package/ts3.4/Core/Interfaces/Gradients.d.ts +0 -21
  361. package/ts3.4/Core/Interfaces/IAttract.d.ts +0 -7
  362. package/ts3.4/Core/Interfaces/IBounds.d.ts +0 -6
  363. package/ts3.4/Core/Interfaces/IBubble.d.ts +0 -4
  364. package/ts3.4/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  365. package/ts3.4/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  366. package/ts3.4/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  367. package/ts3.4/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  368. package/ts3.4/Core/Interfaces/ICoordinates.d.ts +0 -7
  369. package/ts3.4/Core/Interfaces/IDelta.d.ts +0 -4
  370. package/ts3.4/Core/Interfaces/IDimension.d.ts +0 -4
  371. package/ts3.4/Core/Interfaces/IDistance.d.ts +0 -4
  372. package/ts3.4/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  373. package/ts3.4/Core/Interfaces/IInteractor.d.ts +0 -6
  374. package/ts3.4/Core/Interfaces/IMouseData.d.ts +0 -9
  375. package/ts3.4/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  376. package/ts3.4/Core/Interfaces/IParticle.d.ts +0 -59
  377. package/ts3.4/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  378. package/ts3.4/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  379. package/ts3.4/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  380. package/ts3.4/Core/Interfaces/IParticleLife.d.ts +0 -7
  381. package/ts3.4/Core/Interfaces/IParticleLoops.d.ts +0 -4
  382. package/ts3.4/Core/Interfaces/IParticleSpin.d.ts +0 -9
  383. package/ts3.4/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  384. package/ts3.4/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  385. package/ts3.4/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  386. package/ts3.4/Core/Interfaces/IPlugin.d.ts +0 -11
  387. package/ts3.4/Core/Interfaces/IRangeValue.d.ts +0 -4
  388. package/ts3.4/Core/Interfaces/IRectSideResult.d.ts +0 -5
  389. package/ts3.4/Core/Interfaces/IRepulse.d.ts +0 -7
  390. package/ts3.4/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  391. package/ts3.4/Core/Interfaces/IShapeValues.d.ts +0 -8
  392. package/ts3.4/Core/Interfaces/index.d.ts +0 -33
  393. package/ts3.4/Core/Loader.d.ts +0 -14
  394. package/ts3.4/Core/Particle/Mover.d.ts +0 -13
  395. package/ts3.4/Core/Particle/Vector.d.ts +0 -27
  396. package/ts3.4/Core/Particle/Vector3d.d.ts +0 -18
  397. package/ts3.4/Core/Particle.d.ts +0 -84
  398. package/ts3.4/Core/Particles.d.ts +0 -45
  399. package/ts3.4/Core/ParticlesInteractorBase.d.ts +0 -12
  400. package/ts3.4/Core/Retina.d.ts +0 -26
  401. package/ts3.4/Enums/AnimationStatus.d.ts +0 -4
  402. package/ts3.4/Enums/Directions/MoveDirection.d.ts +0 -12
  403. package/ts3.4/Enums/Directions/OutModeDirection.d.ts +0 -6
  404. package/ts3.4/Enums/Directions/RotateDirection.d.ts +0 -6
  405. package/ts3.4/Enums/Directions/TiltDirection.d.ts +0 -6
  406. package/ts3.4/Enums/Directions/index.d.ts +0 -4
  407. package/ts3.4/Enums/InteractivityDetect.d.ts +0 -5
  408. package/ts3.4/Enums/Modes/ClickMode.d.ts +0 -9
  409. package/ts3.4/Enums/Modes/CollisionMode.d.ts +0 -5
  410. package/ts3.4/Enums/Modes/DestroyMode.d.ts +0 -4
  411. package/ts3.4/Enums/Modes/DivMode.d.ts +0 -5
  412. package/ts3.4/Enums/Modes/HoverMode.d.ts +0 -11
  413. package/ts3.4/Enums/Modes/OutMode.d.ts +0 -10
  414. package/ts3.4/Enums/Modes/SizeMode.d.ts +0 -4
  415. package/ts3.4/Enums/Modes/ThemeMode.d.ts +0 -5
  416. package/ts3.4/Enums/Modes/index.d.ts +0 -8
  417. package/ts3.4/Enums/Types/AlterType.d.ts +0 -4
  418. package/ts3.4/Enums/Types/DestroyType.d.ts +0 -5
  419. package/ts3.4/Enums/Types/DivType.d.ts +0 -4
  420. package/ts3.4/Enums/Types/EasingType.d.ts +0 -10
  421. package/ts3.4/Enums/Types/GradientType.d.ts +0 -5
  422. package/ts3.4/Enums/Types/InteractorType.d.ts +0 -4
  423. package/ts3.4/Enums/Types/OrbitType.d.ts +0 -4
  424. package/ts3.4/Enums/Types/ShapeType.d.ts +0 -13
  425. package/ts3.4/Enums/Types/StartValueType.d.ts +0 -5
  426. package/ts3.4/Enums/Types/index.d.ts +0 -9
  427. package/ts3.4/Enums/index.d.ts +0 -5
  428. package/ts3.4/Interactions/External/Attract/Attractor.d.ts +0 -11
  429. package/ts3.4/Interactions/External/Attract/index.d.ts +0 -2
  430. package/ts3.4/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  431. package/ts3.4/Interactions/External/Bounce/index.d.ts +0 -2
  432. package/ts3.4/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  433. package/ts3.4/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  434. package/ts3.4/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  435. package/ts3.4/Interactions/External/Bubble/index.d.ts +0 -2
  436. package/ts3.4/Interactions/External/Connect/Connector.d.ts +0 -8
  437. package/ts3.4/Interactions/External/Connect/index.d.ts +0 -2
  438. package/ts3.4/Interactions/External/Grab/Grabber.d.ts +0 -8
  439. package/ts3.4/Interactions/External/Grab/index.d.ts +0 -2
  440. package/ts3.4/Interactions/External/Repulse/Repulser.d.ts +0 -12
  441. package/ts3.4/Interactions/External/Repulse/index.d.ts +0 -2
  442. package/ts3.4/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  443. package/ts3.4/Interactions/External/Trail/index.d.ts +0 -2
  444. package/ts3.4/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  445. package/ts3.4/Interactions/Particles/Attract/index.d.ts +0 -2
  446. package/ts3.4/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  447. package/ts3.4/Interactions/Particles/Collisions/index.d.ts +0 -2
  448. package/ts3.4/Interactions/Particles/Links/ILink.d.ts +0 -9
  449. package/ts3.4/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  450. package/ts3.4/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  451. package/ts3.4/Interactions/Particles/Links/Linker.d.ts +0 -11
  452. package/ts3.4/Interactions/Particles/Links/index.d.ts +0 -3
  453. package/ts3.4/Interactions/Particles/Links/plugin.d.ts +0 -2
  454. package/ts3.4/Options/Classes/AnimatableColor.d.ts +0 -11
  455. package/ts3.4/Options/Classes/AnimatableGradient.d.ts +0 -53
  456. package/ts3.4/Options/Classes/AnimationOptions.d.ts +0 -11
  457. package/ts3.4/Options/Classes/Background/Background.d.ts +0 -14
  458. package/ts3.4/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  459. package/ts3.4/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  460. package/ts3.4/Options/Classes/ColorAnimation.d.ts +0 -12
  461. package/ts3.4/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  462. package/ts3.4/Options/Classes/HslAnimation.d.ts +0 -11
  463. package/ts3.4/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  464. package/ts3.4/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
  465. package/ts3.4/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
  466. package/ts3.4/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  467. package/ts3.4/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  468. package/ts3.4/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
  469. package/ts3.4/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  470. package/ts3.4/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  471. package/ts3.4/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  472. package/ts3.4/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  473. package/ts3.4/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
  474. package/ts3.4/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
  475. package/ts3.4/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  476. package/ts3.4/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
  477. package/ts3.4/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  478. package/ts3.4/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  479. package/ts3.4/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  480. package/ts3.4/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  481. package/ts3.4/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  482. package/ts3.4/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  483. package/ts3.4/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
  484. package/ts3.4/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
  485. package/ts3.4/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  486. package/ts3.4/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  487. package/ts3.4/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
  488. package/ts3.4/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
  489. package/ts3.4/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  490. package/ts3.4/Options/Classes/ManualParticle.d.ts +0 -10
  491. package/ts3.4/Options/Classes/Motion/Motion.d.ts +0 -10
  492. package/ts3.4/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  493. package/ts3.4/Options/Classes/Options.d.ts +0 -40
  494. package/ts3.4/Options/Classes/OptionsColor.d.ts +0 -10
  495. package/ts3.4/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  496. package/ts3.4/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  497. package/ts3.4/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  498. package/ts3.4/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  499. package/ts3.4/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  500. package/ts3.4/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  501. package/ts3.4/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  502. package/ts3.4/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  503. package/ts3.4/Options/Classes/Particles/Life/Life.d.ts +0 -12
  504. package/ts3.4/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  505. package/ts3.4/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  506. package/ts3.4/Options/Classes/Particles/Links/Links.d.ts +0 -22
  507. package/ts3.4/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  508. package/ts3.4/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  509. package/ts3.4/Options/Classes/Particles/Move/Attract.d.ts +0 -13
  510. package/ts3.4/Options/Classes/Particles/Move/Move.d.ts +0 -39
  511. package/ts3.4/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  512. package/ts3.4/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  513. package/ts3.4/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  514. package/ts3.4/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  515. package/ts3.4/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  516. package/ts3.4/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  517. package/ts3.4/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  518. package/ts3.4/Options/Classes/Particles/Number/Density.d.ts +0 -11
  519. package/ts3.4/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
  520. package/ts3.4/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
  521. package/ts3.4/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
  522. package/ts3.4/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  523. package/ts3.4/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  524. package/ts3.4/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
  525. package/ts3.4/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  526. package/ts3.4/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  527. package/ts3.4/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  528. package/ts3.4/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  529. package/ts3.4/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  530. package/ts3.4/Options/Classes/Particles/Shadow.d.ts +0 -13
  531. package/ts3.4/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
  532. package/ts3.4/Options/Classes/Particles/Size/Size.d.ts +0 -11
  533. package/ts3.4/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
  534. package/ts3.4/Options/Classes/Particles/Stroke.d.ts +0 -11
  535. package/ts3.4/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  536. package/ts3.4/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  537. package/ts3.4/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  538. package/ts3.4/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  539. package/ts3.4/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  540. package/ts3.4/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  541. package/ts3.4/Options/Classes/Random.d.ts +0 -9
  542. package/ts3.4/Options/Classes/Responsive.d.ts +0 -10
  543. package/ts3.4/Options/Classes/Theme/Theme.d.ts +0 -12
  544. package/ts3.4/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  545. package/ts3.4/Options/Classes/ValueWithRandom.d.ts +0 -10
  546. package/ts3.4/Options/Interfaces/Background/IBackground.d.ts +0 -9
  547. package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  548. package/ts3.4/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  549. package/ts3.4/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  550. package/ts3.4/Options/Interfaces/IAnimatable.d.ts +0 -4
  551. package/ts3.4/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  552. package/ts3.4/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  553. package/ts3.4/Options/Interfaces/IAnimation.d.ts +0 -6
  554. package/ts3.4/Options/Interfaces/IColorAnimation.d.ts +0 -5
  555. package/ts3.4/Options/Interfaces/IHslAnimation.d.ts +0 -6
  556. package/ts3.4/Options/Interfaces/IManualParticle.d.ts +0 -7
  557. package/ts3.4/Options/Interfaces/IOptionLoader.d.ts +0 -4
  558. package/ts3.4/Options/Interfaces/IOptions.d.ts +0 -33
  559. package/ts3.4/Options/Interfaces/IOptionsColor.d.ts +0 -2
  560. package/ts3.4/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  561. package/ts3.4/Options/Interfaces/IRandom.d.ts +0 -4
  562. package/ts3.4/Options/Interfaces/IResponsive.d.ts +0 -6
  563. package/ts3.4/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  564. package/ts3.4/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  565. package/ts3.4/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  566. package/ts3.4/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  567. package/ts3.4/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  568. package/ts3.4/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  569. package/ts3.4/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  570. package/ts3.4/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  571. package/ts3.4/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  572. package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  573. package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  574. package/ts3.4/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  575. package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  576. package/ts3.4/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  577. package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  578. package/ts3.4/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  579. package/ts3.4/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  580. package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  581. package/ts3.4/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  582. package/ts3.4/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  583. package/ts3.4/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  584. package/ts3.4/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  585. package/ts3.4/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  586. package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  587. package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  588. package/ts3.4/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  589. package/ts3.4/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  590. package/ts3.4/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  591. package/ts3.4/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  592. package/ts3.4/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  593. package/ts3.4/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  594. package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  595. package/ts3.4/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  596. package/ts3.4/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  597. package/ts3.4/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  598. package/ts3.4/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  599. package/ts3.4/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  600. package/ts3.4/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  601. package/ts3.4/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  602. package/ts3.4/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  603. package/ts3.4/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  604. package/ts3.4/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  605. package/ts3.4/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  606. package/ts3.4/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  607. package/ts3.4/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  608. package/ts3.4/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  609. package/ts3.4/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  610. package/ts3.4/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  611. package/ts3.4/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  612. package/ts3.4/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  613. package/ts3.4/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  614. package/ts3.4/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  615. package/ts3.4/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  616. package/ts3.4/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  617. package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  618. package/ts3.4/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  619. package/ts3.4/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  620. package/ts3.4/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  621. package/ts3.4/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  622. package/ts3.4/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  623. package/ts3.4/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  624. package/ts3.4/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  625. package/ts3.4/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  626. package/ts3.4/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  627. package/ts3.4/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  628. package/ts3.4/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  629. package/ts3.4/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  630. package/ts3.4/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  631. package/ts3.4/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  632. package/ts3.4/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  633. package/ts3.4/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  634. package/ts3.4/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  635. package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  636. package/ts3.4/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  637. package/ts3.4/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  638. package/ts3.4/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  639. package/ts3.4/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  640. package/ts3.4/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  641. package/ts3.4/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  642. package/ts3.4/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  643. package/ts3.4/Plugins/Absorbers/Absorbers.d.ts +0 -25
  644. package/ts3.4/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  645. package/ts3.4/Plugins/Absorbers/Enums/index.d.ts +0 -1
  646. package/ts3.4/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  647. package/ts3.4/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  648. package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  649. package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  650. package/ts3.4/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  651. package/ts3.4/Plugins/Absorbers/plugin.d.ts +0 -2
  652. package/ts3.4/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  653. package/ts3.4/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  654. package/ts3.4/Plugins/Emitters/Emitters.d.ts +0 -24
  655. package/ts3.4/Plugins/Emitters/EmittersMain.d.ts +0 -5
  656. package/ts3.4/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  657. package/ts3.4/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  658. package/ts3.4/Plugins/Emitters/Enums/index.d.ts +0 -2
  659. package/ts3.4/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  660. package/ts3.4/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  661. package/ts3.4/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  662. package/ts3.4/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  663. package/ts3.4/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  664. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  665. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  666. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  667. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  668. package/ts3.4/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  669. package/ts3.4/Plugins/Emitters/ShapeManager.d.ts +0 -6
  670. package/ts3.4/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  671. package/ts3.4/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  672. package/ts3.4/Plugins/Emitters/plugin.d.ts +0 -3
  673. package/ts3.4/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  674. package/ts3.4/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  675. package/ts3.4/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  676. package/ts3.4/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  677. package/ts3.4/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  678. package/ts3.4/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
  679. package/ts3.4/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  680. package/ts3.4/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  681. package/ts3.4/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  682. package/ts3.4/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  683. package/ts3.4/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
  684. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  685. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  686. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  687. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  688. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  689. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  690. package/ts3.4/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  691. package/ts3.4/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  692. package/ts3.4/Plugins/PolygonMask/plugin.d.ts +0 -2
  693. package/ts3.4/Shapes/Circle/CircleDrawer.d.ts +0 -5
  694. package/ts3.4/Shapes/Circle/index.d.ts +0 -2
  695. package/ts3.4/Shapes/Image/ImageDrawer.d.ts +0 -22
  696. package/ts3.4/Shapes/Image/Utils.d.ts +0 -25
  697. package/ts3.4/Shapes/Image/index.d.ts +0 -2
  698. package/ts3.4/Shapes/Line/LineDrawer.d.ts +0 -5
  699. package/ts3.4/Shapes/Line/index.d.ts +0 -2
  700. package/ts3.4/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  701. package/ts3.4/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  702. package/ts3.4/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  703. package/ts3.4/Shapes/Polygon/index.d.ts +0 -4
  704. package/ts3.4/Shapes/Square/SquareDrawer.d.ts +0 -5
  705. package/ts3.4/Shapes/Square/index.d.ts +0 -2
  706. package/ts3.4/Shapes/Star/StarDrawer.d.ts +0 -5
  707. package/ts3.4/Shapes/Star/index.d.ts +0 -2
  708. package/ts3.4/Shapes/Text/TextDrawer.d.ts +0 -8
  709. package/ts3.4/Shapes/Text/index.d.ts +0 -2
  710. package/ts3.4/Types/ParticlesGroups.d.ts +0 -4
  711. package/ts3.4/Types/PathOptions.d.ts +0 -3
  712. package/ts3.4/Types/RangeValue.d.ts +0 -2
  713. package/ts3.4/Types/RecursivePartial.d.ts +0 -3
  714. package/ts3.4/Types/ShapeData.d.ts +0 -5
  715. package/ts3.4/Types/ShapeDrawerFunctions.d.ts +0 -11
  716. package/ts3.4/Types/SingleOrMultiple.d.ts +0 -1
  717. package/ts3.4/Types/index.d.ts +0 -6
  718. package/ts3.4/Updaters/Angle/AngleUpdater.d.ts +0 -6
  719. package/ts3.4/Updaters/Angle/index.d.ts +0 -2
  720. package/ts3.4/Updaters/Color/ColorUpdater.d.ts +0 -6
  721. package/ts3.4/Updaters/Color/index.d.ts +0 -2
  722. package/ts3.4/Updaters/Life/LifeUpdater.d.ts +0 -9
  723. package/ts3.4/Updaters/Life/index.d.ts +0 -2
  724. package/ts3.4/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  725. package/ts3.4/Updaters/Opacity/index.d.ts +0 -2
  726. package/ts3.4/Updaters/OutModes/IBounceData.d.ts +0 -12
  727. package/ts3.4/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  728. package/ts3.4/Updaters/OutModes/Utils.d.ts +0 -3
  729. package/ts3.4/Updaters/OutModes/index.d.ts +0 -2
  730. package/ts3.4/Updaters/Roll/RollUpdater.d.ts +0 -6
  731. package/ts3.4/Updaters/Roll/index.d.ts +0 -2
  732. package/ts3.4/Updaters/Size/SizeUpdater.d.ts +0 -6
  733. package/ts3.4/Updaters/Size/index.d.ts +0 -2
  734. package/ts3.4/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  735. package/ts3.4/Updaters/StrokeColor/index.d.ts +0 -2
  736. package/ts3.4/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  737. package/ts3.4/Updaters/Tilt/index.d.ts +0 -2
  738. package/ts3.4/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  739. package/ts3.4/Updaters/Wobble/index.d.ts +0 -2
  740. package/ts3.4/Utils/CanvasUtils.d.ts +0 -18
  741. package/ts3.4/Utils/Circle.d.ts +0 -8
  742. package/ts3.4/Utils/CircleWarp.d.ts +0 -10
  743. package/ts3.4/Utils/ColorUtils.d.ts +0 -26
  744. package/ts3.4/Utils/Constants.d.ts +0 -18
  745. package/ts3.4/Utils/EventListeners.d.ts +0 -30
  746. package/ts3.4/Utils/NumberUtils.d.ts +0 -23
  747. package/ts3.4/Utils/Plugins.d.ts +0 -22
  748. package/ts3.4/Utils/Point.d.ts +0 -7
  749. package/ts3.4/Utils/QuadTree.d.ts +0 -23
  750. package/ts3.4/Utils/Range.d.ts +0 -7
  751. package/ts3.4/Utils/Rectangle.d.ts +0 -9
  752. package/ts3.4/Utils/Utils.d.ts +0 -65
  753. package/ts3.4/Utils/index.d.ts +0 -13
  754. package/ts3.4/browser/Core/Canvas.d.ts +0 -36
  755. package/ts3.4/browser/Core/Container.d.ts +0 -64
  756. package/ts3.4/browser/Core/ExternalInteractorBase.d.ts +0 -12
  757. package/ts3.4/browser/Core/FrameManager.d.ts +0 -6
  758. package/ts3.4/browser/Core/InteractionManager.d.ts +0 -11
  759. package/ts3.4/browser/Core/Interfaces/Colors.d.ts +0 -33
  760. package/ts3.4/browser/Core/Interfaces/Gradients.d.ts +0 -21
  761. package/ts3.4/browser/Core/Interfaces/IAttract.d.ts +0 -7
  762. package/ts3.4/browser/Core/Interfaces/IBounds.d.ts +0 -6
  763. package/ts3.4/browser/Core/Interfaces/IBubble.d.ts +0 -4
  764. package/ts3.4/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  765. package/ts3.4/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  766. package/ts3.4/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  767. package/ts3.4/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  768. package/ts3.4/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
  769. package/ts3.4/browser/Core/Interfaces/IDelta.d.ts +0 -4
  770. package/ts3.4/browser/Core/Interfaces/IDimension.d.ts +0 -4
  771. package/ts3.4/browser/Core/Interfaces/IDistance.d.ts +0 -4
  772. package/ts3.4/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  773. package/ts3.4/browser/Core/Interfaces/IInteractor.d.ts +0 -6
  774. package/ts3.4/browser/Core/Interfaces/IMouseData.d.ts +0 -9
  775. package/ts3.4/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  776. package/ts3.4/browser/Core/Interfaces/IParticle.d.ts +0 -59
  777. package/ts3.4/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  778. package/ts3.4/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  779. package/ts3.4/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  780. package/ts3.4/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
  781. package/ts3.4/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
  782. package/ts3.4/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
  783. package/ts3.4/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  784. package/ts3.4/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  785. package/ts3.4/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  786. package/ts3.4/browser/Core/Interfaces/IPlugin.d.ts +0 -11
  787. package/ts3.4/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
  788. package/ts3.4/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
  789. package/ts3.4/browser/Core/Interfaces/IRepulse.d.ts +0 -7
  790. package/ts3.4/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  791. package/ts3.4/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
  792. package/ts3.4/browser/Core/Interfaces/index.d.ts +0 -33
  793. package/ts3.4/browser/Core/Loader.d.ts +0 -14
  794. package/ts3.4/browser/Core/Particle/Mover.d.ts +0 -13
  795. package/ts3.4/browser/Core/Particle/Vector.d.ts +0 -27
  796. package/ts3.4/browser/Core/Particle/Vector3d.d.ts +0 -18
  797. package/ts3.4/browser/Core/Particle.d.ts +0 -84
  798. package/ts3.4/browser/Core/Particles.d.ts +0 -45
  799. package/ts3.4/browser/Core/ParticlesInteractorBase.d.ts +0 -12
  800. package/ts3.4/browser/Core/Retina.d.ts +0 -26
  801. package/ts3.4/browser/Enums/AnimationStatus.d.ts +0 -4
  802. package/ts3.4/browser/Enums/Directions/MoveDirection.d.ts +0 -12
  803. package/ts3.4/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
  804. package/ts3.4/browser/Enums/Directions/RotateDirection.d.ts +0 -6
  805. package/ts3.4/browser/Enums/Directions/TiltDirection.d.ts +0 -6
  806. package/ts3.4/browser/Enums/Directions/index.d.ts +0 -4
  807. package/ts3.4/browser/Enums/InteractivityDetect.d.ts +0 -5
  808. package/ts3.4/browser/Enums/Modes/ClickMode.d.ts +0 -9
  809. package/ts3.4/browser/Enums/Modes/CollisionMode.d.ts +0 -5
  810. package/ts3.4/browser/Enums/Modes/DestroyMode.d.ts +0 -4
  811. package/ts3.4/browser/Enums/Modes/DivMode.d.ts +0 -5
  812. package/ts3.4/browser/Enums/Modes/HoverMode.d.ts +0 -11
  813. package/ts3.4/browser/Enums/Modes/OutMode.d.ts +0 -10
  814. package/ts3.4/browser/Enums/Modes/SizeMode.d.ts +0 -4
  815. package/ts3.4/browser/Enums/Modes/ThemeMode.d.ts +0 -5
  816. package/ts3.4/browser/Enums/Modes/index.d.ts +0 -8
  817. package/ts3.4/browser/Enums/Types/AlterType.d.ts +0 -4
  818. package/ts3.4/browser/Enums/Types/DestroyType.d.ts +0 -5
  819. package/ts3.4/browser/Enums/Types/DivType.d.ts +0 -4
  820. package/ts3.4/browser/Enums/Types/EasingType.d.ts +0 -10
  821. package/ts3.4/browser/Enums/Types/GradientType.d.ts +0 -5
  822. package/ts3.4/browser/Enums/Types/InteractorType.d.ts +0 -4
  823. package/ts3.4/browser/Enums/Types/OrbitType.d.ts +0 -4
  824. package/ts3.4/browser/Enums/Types/ShapeType.d.ts +0 -13
  825. package/ts3.4/browser/Enums/Types/StartValueType.d.ts +0 -5
  826. package/ts3.4/browser/Enums/Types/index.d.ts +0 -9
  827. package/ts3.4/browser/Enums/index.d.ts +0 -5
  828. package/ts3.4/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
  829. package/ts3.4/browser/Interactions/External/Attract/index.d.ts +0 -2
  830. package/ts3.4/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  831. package/ts3.4/browser/Interactions/External/Bounce/index.d.ts +0 -2
  832. package/ts3.4/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  833. package/ts3.4/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  834. package/ts3.4/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  835. package/ts3.4/browser/Interactions/External/Bubble/index.d.ts +0 -2
  836. package/ts3.4/browser/Interactions/External/Connect/Connector.d.ts +0 -8
  837. package/ts3.4/browser/Interactions/External/Connect/index.d.ts +0 -2
  838. package/ts3.4/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
  839. package/ts3.4/browser/Interactions/External/Grab/index.d.ts +0 -2
  840. package/ts3.4/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
  841. package/ts3.4/browser/Interactions/External/Repulse/index.d.ts +0 -2
  842. package/ts3.4/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  843. package/ts3.4/browser/Interactions/External/Trail/index.d.ts +0 -2
  844. package/ts3.4/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  845. package/ts3.4/browser/Interactions/Particles/Attract/index.d.ts +0 -2
  846. package/ts3.4/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  847. package/ts3.4/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
  848. package/ts3.4/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
  849. package/ts3.4/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  850. package/ts3.4/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  851. package/ts3.4/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
  852. package/ts3.4/browser/Interactions/Particles/Links/index.d.ts +0 -3
  853. package/ts3.4/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
  854. package/ts3.4/browser/Options/Classes/AnimatableColor.d.ts +0 -11
  855. package/ts3.4/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
  856. package/ts3.4/browser/Options/Classes/AnimationOptions.d.ts +0 -11
  857. package/ts3.4/browser/Options/Classes/Background/Background.d.ts +0 -14
  858. package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  859. package/ts3.4/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  860. package/ts3.4/browser/Options/Classes/ColorAnimation.d.ts +0 -12
  861. package/ts3.4/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  862. package/ts3.4/browser/Options/Classes/HslAnimation.d.ts +0 -11
  863. package/ts3.4/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  864. package/ts3.4/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
  865. package/ts3.4/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
  866. package/ts3.4/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  867. package/ts3.4/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  868. package/ts3.4/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
  869. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  870. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  871. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  872. package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  873. package/ts3.4/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
  874. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
  875. package/ts3.4/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  876. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
  877. package/ts3.4/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  878. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  879. package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  880. package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  881. package/ts3.4/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  882. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  883. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
  884. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
  885. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  886. package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  887. package/ts3.4/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
  888. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
  889. package/ts3.4/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  890. package/ts3.4/browser/Options/Classes/ManualParticle.d.ts +0 -10
  891. package/ts3.4/browser/Options/Classes/Motion/Motion.d.ts +0 -10
  892. package/ts3.4/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  893. package/ts3.4/browser/Options/Classes/Options.d.ts +0 -40
  894. package/ts3.4/browser/Options/Classes/OptionsColor.d.ts +0 -10
  895. package/ts3.4/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  896. package/ts3.4/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  897. package/ts3.4/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  898. package/ts3.4/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  899. package/ts3.4/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  900. package/ts3.4/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  901. package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  902. package/ts3.4/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  903. package/ts3.4/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
  904. package/ts3.4/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  905. package/ts3.4/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  906. package/ts3.4/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
  907. package/ts3.4/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  908. package/ts3.4/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  909. package/ts3.4/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -13
  910. package/ts3.4/browser/Options/Classes/Particles/Move/Move.d.ts +0 -39
  911. package/ts3.4/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  912. package/ts3.4/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  913. package/ts3.4/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  914. package/ts3.4/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  915. package/ts3.4/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  916. package/ts3.4/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  917. package/ts3.4/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  918. package/ts3.4/browser/Options/Classes/Particles/Number/Density.d.ts +0 -11
  919. package/ts3.4/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
  920. package/ts3.4/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
  921. package/ts3.4/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
  922. package/ts3.4/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  923. package/ts3.4/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  924. package/ts3.4/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
  925. package/ts3.4/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  926. package/ts3.4/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  927. package/ts3.4/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  928. package/ts3.4/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  929. package/ts3.4/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  930. package/ts3.4/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
  931. package/ts3.4/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
  932. package/ts3.4/browser/Options/Classes/Particles/Size/Size.d.ts +0 -11
  933. package/ts3.4/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
  934. package/ts3.4/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
  935. package/ts3.4/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  936. package/ts3.4/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  937. package/ts3.4/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  938. package/ts3.4/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  939. package/ts3.4/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  940. package/ts3.4/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  941. package/ts3.4/browser/Options/Classes/Random.d.ts +0 -9
  942. package/ts3.4/browser/Options/Classes/Responsive.d.ts +0 -10
  943. package/ts3.4/browser/Options/Classes/Theme/Theme.d.ts +0 -12
  944. package/ts3.4/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  945. package/ts3.4/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
  946. package/ts3.4/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
  947. package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  948. package/ts3.4/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  949. package/ts3.4/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  950. package/ts3.4/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
  951. package/ts3.4/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  952. package/ts3.4/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  953. package/ts3.4/browser/Options/Interfaces/IAnimation.d.ts +0 -6
  954. package/ts3.4/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
  955. package/ts3.4/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
  956. package/ts3.4/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
  957. package/ts3.4/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
  958. package/ts3.4/browser/Options/Interfaces/IOptions.d.ts +0 -33
  959. package/ts3.4/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
  960. package/ts3.4/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  961. package/ts3.4/browser/Options/Interfaces/IRandom.d.ts +0 -4
  962. package/ts3.4/browser/Options/Interfaces/IResponsive.d.ts +0 -6
  963. package/ts3.4/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  964. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  965. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  966. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  967. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  968. package/ts3.4/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  969. package/ts3.4/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  970. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  971. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  972. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  973. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  974. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  975. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  976. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  977. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  978. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  979. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  980. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  981. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  982. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  983. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  984. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  985. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  986. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  987. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  988. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  989. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  990. package/ts3.4/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  991. package/ts3.4/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  992. package/ts3.4/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  993. package/ts3.4/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  994. package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  995. package/ts3.4/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  996. package/ts3.4/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  997. package/ts3.4/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  998. package/ts3.4/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  999. package/ts3.4/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  1000. package/ts3.4/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  1001. package/ts3.4/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  1002. package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  1003. package/ts3.4/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  1004. package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  1005. package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  1006. package/ts3.4/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  1007. package/ts3.4/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  1008. package/ts3.4/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  1009. package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  1010. package/ts3.4/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  1011. package/ts3.4/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  1012. package/ts3.4/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  1013. package/ts3.4/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  1014. package/ts3.4/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  1015. package/ts3.4/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  1016. package/ts3.4/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  1017. package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  1018. package/ts3.4/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  1019. package/ts3.4/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  1020. package/ts3.4/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  1021. package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  1022. package/ts3.4/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  1023. package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  1024. package/ts3.4/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  1025. package/ts3.4/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  1026. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  1027. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  1028. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  1029. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  1030. package/ts3.4/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  1031. package/ts3.4/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  1032. package/ts3.4/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  1033. package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  1034. package/ts3.4/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  1035. package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  1036. package/ts3.4/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  1037. package/ts3.4/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  1038. package/ts3.4/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  1039. package/ts3.4/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  1040. package/ts3.4/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  1041. package/ts3.4/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  1042. package/ts3.4/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  1043. package/ts3.4/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
  1044. package/ts3.4/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  1045. package/ts3.4/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
  1046. package/ts3.4/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  1047. package/ts3.4/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  1048. package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  1049. package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  1050. package/ts3.4/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  1051. package/ts3.4/browser/Plugins/Absorbers/plugin.d.ts +0 -2
  1052. package/ts3.4/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  1053. package/ts3.4/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  1054. package/ts3.4/browser/Plugins/Emitters/Emitters.d.ts +0 -24
  1055. package/ts3.4/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
  1056. package/ts3.4/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  1057. package/ts3.4/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  1058. package/ts3.4/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
  1059. package/ts3.4/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  1060. package/ts3.4/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  1061. package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  1062. package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  1063. package/ts3.4/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  1064. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  1065. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  1066. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  1067. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  1068. package/ts3.4/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  1069. package/ts3.4/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
  1070. package/ts3.4/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  1071. package/ts3.4/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  1072. package/ts3.4/browser/Plugins/Emitters/plugin.d.ts +0 -3
  1073. package/ts3.4/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  1074. package/ts3.4/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  1075. package/ts3.4/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  1076. package/ts3.4/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  1077. package/ts3.4/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  1078. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
  1079. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  1080. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  1081. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  1082. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  1083. package/ts3.4/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
  1084. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  1085. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  1086. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  1087. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  1088. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  1089. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  1090. package/ts3.4/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  1091. package/ts3.4/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  1092. package/ts3.4/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
  1093. package/ts3.4/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
  1094. package/ts3.4/browser/Shapes/Circle/index.d.ts +0 -2
  1095. package/ts3.4/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
  1096. package/ts3.4/browser/Shapes/Image/Utils.d.ts +0 -25
  1097. package/ts3.4/browser/Shapes/Image/index.d.ts +0 -2
  1098. package/ts3.4/browser/Shapes/Line/LineDrawer.d.ts +0 -5
  1099. package/ts3.4/browser/Shapes/Line/index.d.ts +0 -2
  1100. package/ts3.4/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  1101. package/ts3.4/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  1102. package/ts3.4/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  1103. package/ts3.4/browser/Shapes/Polygon/index.d.ts +0 -4
  1104. package/ts3.4/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
  1105. package/ts3.4/browser/Shapes/Square/index.d.ts +0 -2
  1106. package/ts3.4/browser/Shapes/Star/StarDrawer.d.ts +0 -5
  1107. package/ts3.4/browser/Shapes/Star/index.d.ts +0 -2
  1108. package/ts3.4/browser/Shapes/Text/TextDrawer.d.ts +0 -8
  1109. package/ts3.4/browser/Shapes/Text/index.d.ts +0 -2
  1110. package/ts3.4/browser/Types/ParticlesGroups.d.ts +0 -4
  1111. package/ts3.4/browser/Types/PathOptions.d.ts +0 -3
  1112. package/ts3.4/browser/Types/RangeValue.d.ts +0 -2
  1113. package/ts3.4/browser/Types/RecursivePartial.d.ts +0 -3
  1114. package/ts3.4/browser/Types/ShapeData.d.ts +0 -5
  1115. package/ts3.4/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
  1116. package/ts3.4/browser/Types/SingleOrMultiple.d.ts +0 -1
  1117. package/ts3.4/browser/Types/index.d.ts +0 -6
  1118. package/ts3.4/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
  1119. package/ts3.4/browser/Updaters/Angle/index.d.ts +0 -2
  1120. package/ts3.4/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
  1121. package/ts3.4/browser/Updaters/Color/index.d.ts +0 -2
  1122. package/ts3.4/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
  1123. package/ts3.4/browser/Updaters/Life/index.d.ts +0 -2
  1124. package/ts3.4/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  1125. package/ts3.4/browser/Updaters/Opacity/index.d.ts +0 -2
  1126. package/ts3.4/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
  1127. package/ts3.4/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  1128. package/ts3.4/browser/Updaters/OutModes/Utils.d.ts +0 -3
  1129. package/ts3.4/browser/Updaters/OutModes/index.d.ts +0 -2
  1130. package/ts3.4/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
  1131. package/ts3.4/browser/Updaters/Roll/index.d.ts +0 -2
  1132. package/ts3.4/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
  1133. package/ts3.4/browser/Updaters/Size/index.d.ts +0 -2
  1134. package/ts3.4/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  1135. package/ts3.4/browser/Updaters/StrokeColor/index.d.ts +0 -2
  1136. package/ts3.4/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  1137. package/ts3.4/browser/Updaters/Tilt/index.d.ts +0 -2
  1138. package/ts3.4/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  1139. package/ts3.4/browser/Updaters/Wobble/index.d.ts +0 -2
  1140. package/ts3.4/browser/Utils/CanvasUtils.d.ts +0 -18
  1141. package/ts3.4/browser/Utils/Circle.d.ts +0 -8
  1142. package/ts3.4/browser/Utils/CircleWarp.d.ts +0 -10
  1143. package/ts3.4/browser/Utils/ColorUtils.d.ts +0 -26
  1144. package/ts3.4/browser/Utils/Constants.d.ts +0 -18
  1145. package/ts3.4/browser/Utils/EventListeners.d.ts +0 -30
  1146. package/ts3.4/browser/Utils/NumberUtils.d.ts +0 -23
  1147. package/ts3.4/browser/Utils/Plugins.d.ts +0 -22
  1148. package/ts3.4/browser/Utils/Point.d.ts +0 -7
  1149. package/ts3.4/browser/Utils/QuadTree.d.ts +0 -23
  1150. package/ts3.4/browser/Utils/Range.d.ts +0 -7
  1151. package/ts3.4/browser/Utils/Rectangle.d.ts +0 -9
  1152. package/ts3.4/browser/Utils/Utils.d.ts +0 -65
  1153. package/ts3.4/browser/Utils/index.d.ts +0 -13
  1154. package/ts3.4/browser/full.d.ts +0 -2
  1155. package/ts3.4/browser/index.d.ts +0 -31
  1156. package/ts3.4/browser/index.slim.d.ts +0 -25
  1157. package/ts3.4/browser/main.d.ts +0 -24
  1158. package/ts3.4/browser/pjs.d.ts +0 -14
  1159. package/ts3.4/browser/slim.d.ts +0 -2
  1160. package/ts3.4/esm/Core/Canvas.d.ts +0 -36
  1161. package/ts3.4/esm/Core/Container.d.ts +0 -64
  1162. package/ts3.4/esm/Core/ExternalInteractorBase.d.ts +0 -12
  1163. package/ts3.4/esm/Core/FrameManager.d.ts +0 -6
  1164. package/ts3.4/esm/Core/InteractionManager.d.ts +0 -11
  1165. package/ts3.4/esm/Core/Interfaces/Colors.d.ts +0 -33
  1166. package/ts3.4/esm/Core/Interfaces/Gradients.d.ts +0 -21
  1167. package/ts3.4/esm/Core/Interfaces/IAttract.d.ts +0 -7
  1168. package/ts3.4/esm/Core/Interfaces/IBounds.d.ts +0 -6
  1169. package/ts3.4/esm/Core/Interfaces/IBubble.d.ts +0 -4
  1170. package/ts3.4/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  1171. package/ts3.4/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  1172. package/ts3.4/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  1173. package/ts3.4/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  1174. package/ts3.4/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
  1175. package/ts3.4/esm/Core/Interfaces/IDelta.d.ts +0 -4
  1176. package/ts3.4/esm/Core/Interfaces/IDimension.d.ts +0 -4
  1177. package/ts3.4/esm/Core/Interfaces/IDistance.d.ts +0 -4
  1178. package/ts3.4/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  1179. package/ts3.4/esm/Core/Interfaces/IInteractor.d.ts +0 -6
  1180. package/ts3.4/esm/Core/Interfaces/IMouseData.d.ts +0 -9
  1181. package/ts3.4/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  1182. package/ts3.4/esm/Core/Interfaces/IParticle.d.ts +0 -59
  1183. package/ts3.4/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  1184. package/ts3.4/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  1185. package/ts3.4/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  1186. package/ts3.4/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
  1187. package/ts3.4/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
  1188. package/ts3.4/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
  1189. package/ts3.4/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  1190. package/ts3.4/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  1191. package/ts3.4/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  1192. package/ts3.4/esm/Core/Interfaces/IPlugin.d.ts +0 -11
  1193. package/ts3.4/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
  1194. package/ts3.4/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
  1195. package/ts3.4/esm/Core/Interfaces/IRepulse.d.ts +0 -7
  1196. package/ts3.4/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  1197. package/ts3.4/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
  1198. package/ts3.4/esm/Core/Interfaces/index.d.ts +0 -33
  1199. package/ts3.4/esm/Core/Loader.d.ts +0 -14
  1200. package/ts3.4/esm/Core/Particle/Mover.d.ts +0 -13
  1201. package/ts3.4/esm/Core/Particle/Vector.d.ts +0 -27
  1202. package/ts3.4/esm/Core/Particle/Vector3d.d.ts +0 -18
  1203. package/ts3.4/esm/Core/Particle.d.ts +0 -84
  1204. package/ts3.4/esm/Core/Particles.d.ts +0 -45
  1205. package/ts3.4/esm/Core/ParticlesInteractorBase.d.ts +0 -12
  1206. package/ts3.4/esm/Core/Retina.d.ts +0 -26
  1207. package/ts3.4/esm/Enums/AnimationStatus.d.ts +0 -4
  1208. package/ts3.4/esm/Enums/Directions/MoveDirection.d.ts +0 -12
  1209. package/ts3.4/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
  1210. package/ts3.4/esm/Enums/Directions/RotateDirection.d.ts +0 -6
  1211. package/ts3.4/esm/Enums/Directions/TiltDirection.d.ts +0 -6
  1212. package/ts3.4/esm/Enums/Directions/index.d.ts +0 -4
  1213. package/ts3.4/esm/Enums/InteractivityDetect.d.ts +0 -5
  1214. package/ts3.4/esm/Enums/Modes/ClickMode.d.ts +0 -9
  1215. package/ts3.4/esm/Enums/Modes/CollisionMode.d.ts +0 -5
  1216. package/ts3.4/esm/Enums/Modes/DestroyMode.d.ts +0 -4
  1217. package/ts3.4/esm/Enums/Modes/DivMode.d.ts +0 -5
  1218. package/ts3.4/esm/Enums/Modes/HoverMode.d.ts +0 -11
  1219. package/ts3.4/esm/Enums/Modes/OutMode.d.ts +0 -10
  1220. package/ts3.4/esm/Enums/Modes/SizeMode.d.ts +0 -4
  1221. package/ts3.4/esm/Enums/Modes/ThemeMode.d.ts +0 -5
  1222. package/ts3.4/esm/Enums/Modes/index.d.ts +0 -8
  1223. package/ts3.4/esm/Enums/Types/AlterType.d.ts +0 -4
  1224. package/ts3.4/esm/Enums/Types/DestroyType.d.ts +0 -5
  1225. package/ts3.4/esm/Enums/Types/DivType.d.ts +0 -4
  1226. package/ts3.4/esm/Enums/Types/EasingType.d.ts +0 -10
  1227. package/ts3.4/esm/Enums/Types/GradientType.d.ts +0 -5
  1228. package/ts3.4/esm/Enums/Types/InteractorType.d.ts +0 -4
  1229. package/ts3.4/esm/Enums/Types/OrbitType.d.ts +0 -4
  1230. package/ts3.4/esm/Enums/Types/ShapeType.d.ts +0 -13
  1231. package/ts3.4/esm/Enums/Types/StartValueType.d.ts +0 -5
  1232. package/ts3.4/esm/Enums/Types/index.d.ts +0 -9
  1233. package/ts3.4/esm/Enums/index.d.ts +0 -5
  1234. package/ts3.4/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
  1235. package/ts3.4/esm/Interactions/External/Attract/index.d.ts +0 -2
  1236. package/ts3.4/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  1237. package/ts3.4/esm/Interactions/External/Bounce/index.d.ts +0 -2
  1238. package/ts3.4/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  1239. package/ts3.4/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  1240. package/ts3.4/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  1241. package/ts3.4/esm/Interactions/External/Bubble/index.d.ts +0 -2
  1242. package/ts3.4/esm/Interactions/External/Connect/Connector.d.ts +0 -8
  1243. package/ts3.4/esm/Interactions/External/Connect/index.d.ts +0 -2
  1244. package/ts3.4/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
  1245. package/ts3.4/esm/Interactions/External/Grab/index.d.ts +0 -2
  1246. package/ts3.4/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
  1247. package/ts3.4/esm/Interactions/External/Repulse/index.d.ts +0 -2
  1248. package/ts3.4/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  1249. package/ts3.4/esm/Interactions/External/Trail/index.d.ts +0 -2
  1250. package/ts3.4/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  1251. package/ts3.4/esm/Interactions/Particles/Attract/index.d.ts +0 -2
  1252. package/ts3.4/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  1253. package/ts3.4/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
  1254. package/ts3.4/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
  1255. package/ts3.4/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  1256. package/ts3.4/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  1257. package/ts3.4/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
  1258. package/ts3.4/esm/Interactions/Particles/Links/index.d.ts +0 -3
  1259. package/ts3.4/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
  1260. package/ts3.4/esm/Options/Classes/AnimatableColor.d.ts +0 -11
  1261. package/ts3.4/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
  1262. package/ts3.4/esm/Options/Classes/AnimationOptions.d.ts +0 -11
  1263. package/ts3.4/esm/Options/Classes/Background/Background.d.ts +0 -14
  1264. package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  1265. package/ts3.4/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  1266. package/ts3.4/esm/Options/Classes/ColorAnimation.d.ts +0 -12
  1267. package/ts3.4/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  1268. package/ts3.4/esm/Options/Classes/HslAnimation.d.ts +0 -11
  1269. package/ts3.4/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  1270. package/ts3.4/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -15
  1271. package/ts3.4/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -17
  1272. package/ts3.4/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  1273. package/ts3.4/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  1274. package/ts3.4/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -14
  1275. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  1276. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  1277. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  1278. package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  1279. package/ts3.4/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -10
  1280. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -13
  1281. package/ts3.4/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  1282. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -12
  1283. package/ts3.4/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  1284. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  1285. package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  1286. package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  1287. package/ts3.4/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  1288. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  1289. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -11
  1290. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -9
  1291. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  1292. package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  1293. package/ts3.4/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -10
  1294. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -10
  1295. package/ts3.4/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  1296. package/ts3.4/esm/Options/Classes/ManualParticle.d.ts +0 -10
  1297. package/ts3.4/esm/Options/Classes/Motion/Motion.d.ts +0 -10
  1298. package/ts3.4/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  1299. package/ts3.4/esm/Options/Classes/Options.d.ts +0 -40
  1300. package/ts3.4/esm/Options/Classes/OptionsColor.d.ts +0 -10
  1301. package/ts3.4/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  1302. package/ts3.4/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  1303. package/ts3.4/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  1304. package/ts3.4/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  1305. package/ts3.4/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  1306. package/ts3.4/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  1307. package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  1308. package/ts3.4/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  1309. package/ts3.4/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
  1310. package/ts3.4/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  1311. package/ts3.4/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  1312. package/ts3.4/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
  1313. package/ts3.4/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  1314. package/ts3.4/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  1315. package/ts3.4/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -13
  1316. package/ts3.4/esm/Options/Classes/Particles/Move/Move.d.ts +0 -39
  1317. package/ts3.4/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  1318. package/ts3.4/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  1319. package/ts3.4/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  1320. package/ts3.4/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  1321. package/ts3.4/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  1322. package/ts3.4/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  1323. package/ts3.4/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  1324. package/ts3.4/esm/Options/Classes/Particles/Number/Density.d.ts +0 -11
  1325. package/ts3.4/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -12
  1326. package/ts3.4/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -11
  1327. package/ts3.4/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -13
  1328. package/ts3.4/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  1329. package/ts3.4/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  1330. package/ts3.4/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -56
  1331. package/ts3.4/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  1332. package/ts3.4/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  1333. package/ts3.4/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  1334. package/ts3.4/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  1335. package/ts3.4/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  1336. package/ts3.4/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
  1337. package/ts3.4/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -21
  1338. package/ts3.4/esm/Options/Classes/Particles/Size/Size.d.ts +0 -11
  1339. package/ts3.4/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -13
  1340. package/ts3.4/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
  1341. package/ts3.4/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  1342. package/ts3.4/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  1343. package/ts3.4/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  1344. package/ts3.4/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  1345. package/ts3.4/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  1346. package/ts3.4/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  1347. package/ts3.4/esm/Options/Classes/Random.d.ts +0 -9
  1348. package/ts3.4/esm/Options/Classes/Responsive.d.ts +0 -10
  1349. package/ts3.4/esm/Options/Classes/Theme/Theme.d.ts +0 -12
  1350. package/ts3.4/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  1351. package/ts3.4/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
  1352. package/ts3.4/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
  1353. package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  1354. package/ts3.4/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  1355. package/ts3.4/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  1356. package/ts3.4/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
  1357. package/ts3.4/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  1358. package/ts3.4/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  1359. package/ts3.4/esm/Options/Interfaces/IAnimation.d.ts +0 -6
  1360. package/ts3.4/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
  1361. package/ts3.4/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
  1362. package/ts3.4/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
  1363. package/ts3.4/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
  1364. package/ts3.4/esm/Options/Interfaces/IOptions.d.ts +0 -33
  1365. package/ts3.4/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
  1366. package/ts3.4/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  1367. package/ts3.4/esm/Options/Interfaces/IRandom.d.ts +0 -4
  1368. package/ts3.4/esm/Options/Interfaces/IResponsive.d.ts +0 -6
  1369. package/ts3.4/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  1370. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  1371. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  1372. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  1373. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  1374. package/ts3.4/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  1375. package/ts3.4/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  1376. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  1377. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  1378. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  1379. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  1380. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  1381. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  1382. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  1383. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  1384. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  1385. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  1386. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  1387. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  1388. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  1389. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  1390. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  1391. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  1392. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  1393. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  1394. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  1395. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  1396. package/ts3.4/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  1397. package/ts3.4/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  1398. package/ts3.4/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  1399. package/ts3.4/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  1400. package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  1401. package/ts3.4/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  1402. package/ts3.4/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  1403. package/ts3.4/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  1404. package/ts3.4/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  1405. package/ts3.4/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  1406. package/ts3.4/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  1407. package/ts3.4/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  1408. package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  1409. package/ts3.4/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  1410. package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  1411. package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  1412. package/ts3.4/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  1413. package/ts3.4/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  1414. package/ts3.4/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  1415. package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  1416. package/ts3.4/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  1417. package/ts3.4/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  1418. package/ts3.4/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  1419. package/ts3.4/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  1420. package/ts3.4/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  1421. package/ts3.4/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  1422. package/ts3.4/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  1423. package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  1424. package/ts3.4/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  1425. package/ts3.4/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  1426. package/ts3.4/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  1427. package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  1428. package/ts3.4/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  1429. package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  1430. package/ts3.4/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  1431. package/ts3.4/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  1432. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  1433. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  1434. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  1435. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  1436. package/ts3.4/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  1437. package/ts3.4/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  1438. package/ts3.4/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  1439. package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  1440. package/ts3.4/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  1441. package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  1442. package/ts3.4/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  1443. package/ts3.4/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  1444. package/ts3.4/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  1445. package/ts3.4/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  1446. package/ts3.4/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  1447. package/ts3.4/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  1448. package/ts3.4/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  1449. package/ts3.4/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
  1450. package/ts3.4/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  1451. package/ts3.4/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
  1452. package/ts3.4/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  1453. package/ts3.4/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  1454. package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  1455. package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  1456. package/ts3.4/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  1457. package/ts3.4/esm/Plugins/Absorbers/plugin.d.ts +0 -2
  1458. package/ts3.4/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  1459. package/ts3.4/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  1460. package/ts3.4/esm/Plugins/Emitters/Emitters.d.ts +0 -24
  1461. package/ts3.4/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
  1462. package/ts3.4/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  1463. package/ts3.4/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  1464. package/ts3.4/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
  1465. package/ts3.4/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  1466. package/ts3.4/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  1467. package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  1468. package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  1469. package/ts3.4/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  1470. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  1471. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  1472. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  1473. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  1474. package/ts3.4/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  1475. package/ts3.4/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
  1476. package/ts3.4/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  1477. package/ts3.4/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  1478. package/ts3.4/esm/Plugins/Emitters/plugin.d.ts +0 -3
  1479. package/ts3.4/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  1480. package/ts3.4/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  1481. package/ts3.4/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  1482. package/ts3.4/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  1483. package/ts3.4/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  1484. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -13
  1485. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  1486. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  1487. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  1488. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  1489. package/ts3.4/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -23
  1490. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  1491. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  1492. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  1493. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  1494. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  1495. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  1496. package/ts3.4/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  1497. package/ts3.4/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  1498. package/ts3.4/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
  1499. package/ts3.4/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
  1500. package/ts3.4/esm/Shapes/Circle/index.d.ts +0 -2
  1501. package/ts3.4/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
  1502. package/ts3.4/esm/Shapes/Image/Utils.d.ts +0 -25
  1503. package/ts3.4/esm/Shapes/Image/index.d.ts +0 -2
  1504. package/ts3.4/esm/Shapes/Line/LineDrawer.d.ts +0 -5
  1505. package/ts3.4/esm/Shapes/Line/index.d.ts +0 -2
  1506. package/ts3.4/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  1507. package/ts3.4/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  1508. package/ts3.4/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  1509. package/ts3.4/esm/Shapes/Polygon/index.d.ts +0 -4
  1510. package/ts3.4/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
  1511. package/ts3.4/esm/Shapes/Square/index.d.ts +0 -2
  1512. package/ts3.4/esm/Shapes/Star/StarDrawer.d.ts +0 -5
  1513. package/ts3.4/esm/Shapes/Star/index.d.ts +0 -2
  1514. package/ts3.4/esm/Shapes/Text/TextDrawer.d.ts +0 -8
  1515. package/ts3.4/esm/Shapes/Text/index.d.ts +0 -2
  1516. package/ts3.4/esm/Types/ParticlesGroups.d.ts +0 -4
  1517. package/ts3.4/esm/Types/PathOptions.d.ts +0 -3
  1518. package/ts3.4/esm/Types/RangeValue.d.ts +0 -2
  1519. package/ts3.4/esm/Types/RecursivePartial.d.ts +0 -3
  1520. package/ts3.4/esm/Types/ShapeData.d.ts +0 -5
  1521. package/ts3.4/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
  1522. package/ts3.4/esm/Types/SingleOrMultiple.d.ts +0 -1
  1523. package/ts3.4/esm/Types/index.d.ts +0 -6
  1524. package/ts3.4/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
  1525. package/ts3.4/esm/Updaters/Angle/index.d.ts +0 -2
  1526. package/ts3.4/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
  1527. package/ts3.4/esm/Updaters/Color/index.d.ts +0 -2
  1528. package/ts3.4/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
  1529. package/ts3.4/esm/Updaters/Life/index.d.ts +0 -2
  1530. package/ts3.4/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  1531. package/ts3.4/esm/Updaters/Opacity/index.d.ts +0 -2
  1532. package/ts3.4/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
  1533. package/ts3.4/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  1534. package/ts3.4/esm/Updaters/OutModes/Utils.d.ts +0 -3
  1535. package/ts3.4/esm/Updaters/OutModes/index.d.ts +0 -2
  1536. package/ts3.4/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
  1537. package/ts3.4/esm/Updaters/Roll/index.d.ts +0 -2
  1538. package/ts3.4/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
  1539. package/ts3.4/esm/Updaters/Size/index.d.ts +0 -2
  1540. package/ts3.4/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  1541. package/ts3.4/esm/Updaters/StrokeColor/index.d.ts +0 -2
  1542. package/ts3.4/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  1543. package/ts3.4/esm/Updaters/Tilt/index.d.ts +0 -2
  1544. package/ts3.4/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  1545. package/ts3.4/esm/Updaters/Wobble/index.d.ts +0 -2
  1546. package/ts3.4/esm/Utils/CanvasUtils.d.ts +0 -18
  1547. package/ts3.4/esm/Utils/Circle.d.ts +0 -8
  1548. package/ts3.4/esm/Utils/CircleWarp.d.ts +0 -10
  1549. package/ts3.4/esm/Utils/ColorUtils.d.ts +0 -26
  1550. package/ts3.4/esm/Utils/Constants.d.ts +0 -18
  1551. package/ts3.4/esm/Utils/EventListeners.d.ts +0 -30
  1552. package/ts3.4/esm/Utils/NumberUtils.d.ts +0 -23
  1553. package/ts3.4/esm/Utils/Plugins.d.ts +0 -22
  1554. package/ts3.4/esm/Utils/Point.d.ts +0 -7
  1555. package/ts3.4/esm/Utils/QuadTree.d.ts +0 -23
  1556. package/ts3.4/esm/Utils/Range.d.ts +0 -7
  1557. package/ts3.4/esm/Utils/Rectangle.d.ts +0 -9
  1558. package/ts3.4/esm/Utils/Utils.d.ts +0 -65
  1559. package/ts3.4/esm/Utils/index.d.ts +0 -13
  1560. package/ts3.4/esm/full.d.ts +0 -2
  1561. package/ts3.4/esm/index.d.ts +0 -31
  1562. package/ts3.4/esm/index.slim.d.ts +0 -25
  1563. package/ts3.4/esm/main.d.ts +0 -24
  1564. package/ts3.4/esm/pjs.d.ts +0 -14
  1565. package/ts3.4/esm/slim.d.ts +0 -2
  1566. package/ts3.4/full.d.ts +0 -2
  1567. package/ts3.4/index.d.ts +0 -31
  1568. package/ts3.4/index.slim.d.ts +0 -25
  1569. package/ts3.4/main.d.ts +0 -24
  1570. package/ts3.4/pjs.d.ts +0 -14
  1571. package/ts3.4/slim.d.ts +0 -2
  1572. package/ts3.8/Core/Canvas.d.ts +0 -36
  1573. package/ts3.8/Core/Container.d.ts +0 -64
  1574. package/ts3.8/Core/ExternalInteractorBase.d.ts +0 -12
  1575. package/ts3.8/Core/FrameManager.d.ts +0 -6
  1576. package/ts3.8/Core/InteractionManager.d.ts +0 -11
  1577. package/ts3.8/Core/Interfaces/Colors.d.ts +0 -33
  1578. package/ts3.8/Core/Interfaces/Gradients.d.ts +0 -21
  1579. package/ts3.8/Core/Interfaces/IAttract.d.ts +0 -7
  1580. package/ts3.8/Core/Interfaces/IBounds.d.ts +0 -6
  1581. package/ts3.8/Core/Interfaces/IBubble.d.ts +0 -4
  1582. package/ts3.8/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  1583. package/ts3.8/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  1584. package/ts3.8/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  1585. package/ts3.8/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  1586. package/ts3.8/Core/Interfaces/ICoordinates.d.ts +0 -7
  1587. package/ts3.8/Core/Interfaces/IDelta.d.ts +0 -4
  1588. package/ts3.8/Core/Interfaces/IDimension.d.ts +0 -4
  1589. package/ts3.8/Core/Interfaces/IDistance.d.ts +0 -4
  1590. package/ts3.8/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  1591. package/ts3.8/Core/Interfaces/IInteractor.d.ts +0 -6
  1592. package/ts3.8/Core/Interfaces/IMouseData.d.ts +0 -9
  1593. package/ts3.8/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  1594. package/ts3.8/Core/Interfaces/IParticle.d.ts +0 -59
  1595. package/ts3.8/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  1596. package/ts3.8/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  1597. package/ts3.8/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  1598. package/ts3.8/Core/Interfaces/IParticleLife.d.ts +0 -7
  1599. package/ts3.8/Core/Interfaces/IParticleLoops.d.ts +0 -4
  1600. package/ts3.8/Core/Interfaces/IParticleSpin.d.ts +0 -9
  1601. package/ts3.8/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  1602. package/ts3.8/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  1603. package/ts3.8/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  1604. package/ts3.8/Core/Interfaces/IPlugin.d.ts +0 -11
  1605. package/ts3.8/Core/Interfaces/IRangeValue.d.ts +0 -4
  1606. package/ts3.8/Core/Interfaces/IRectSideResult.d.ts +0 -5
  1607. package/ts3.8/Core/Interfaces/IRepulse.d.ts +0 -7
  1608. package/ts3.8/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  1609. package/ts3.8/Core/Interfaces/IShapeValues.d.ts +0 -8
  1610. package/ts3.8/Core/Interfaces/index.d.ts +0 -33
  1611. package/ts3.8/Core/Loader.d.ts +0 -14
  1612. package/ts3.8/Core/Particle/Mover.d.ts +0 -13
  1613. package/ts3.8/Core/Particle/Vector.d.ts +0 -29
  1614. package/ts3.8/Core/Particle/Vector3d.d.ts +0 -18
  1615. package/ts3.8/Core/Particle.d.ts +0 -84
  1616. package/ts3.8/Core/Particles.d.ts +0 -45
  1617. package/ts3.8/Core/ParticlesInteractorBase.d.ts +0 -12
  1618. package/ts3.8/Core/Retina.d.ts +0 -26
  1619. package/ts3.8/Enums/AnimationStatus.d.ts +0 -4
  1620. package/ts3.8/Enums/Directions/MoveDirection.d.ts +0 -12
  1621. package/ts3.8/Enums/Directions/OutModeDirection.d.ts +0 -6
  1622. package/ts3.8/Enums/Directions/RotateDirection.d.ts +0 -6
  1623. package/ts3.8/Enums/Directions/TiltDirection.d.ts +0 -6
  1624. package/ts3.8/Enums/Directions/index.d.ts +0 -4
  1625. package/ts3.8/Enums/InteractivityDetect.d.ts +0 -5
  1626. package/ts3.8/Enums/Modes/ClickMode.d.ts +0 -9
  1627. package/ts3.8/Enums/Modes/CollisionMode.d.ts +0 -5
  1628. package/ts3.8/Enums/Modes/DestroyMode.d.ts +0 -4
  1629. package/ts3.8/Enums/Modes/DivMode.d.ts +0 -5
  1630. package/ts3.8/Enums/Modes/HoverMode.d.ts +0 -11
  1631. package/ts3.8/Enums/Modes/OutMode.d.ts +0 -10
  1632. package/ts3.8/Enums/Modes/SizeMode.d.ts +0 -4
  1633. package/ts3.8/Enums/Modes/ThemeMode.d.ts +0 -5
  1634. package/ts3.8/Enums/Modes/index.d.ts +0 -8
  1635. package/ts3.8/Enums/Types/AlterType.d.ts +0 -4
  1636. package/ts3.8/Enums/Types/DestroyType.d.ts +0 -5
  1637. package/ts3.8/Enums/Types/DivType.d.ts +0 -4
  1638. package/ts3.8/Enums/Types/EasingType.d.ts +0 -10
  1639. package/ts3.8/Enums/Types/GradientType.d.ts +0 -5
  1640. package/ts3.8/Enums/Types/InteractorType.d.ts +0 -4
  1641. package/ts3.8/Enums/Types/OrbitType.d.ts +0 -4
  1642. package/ts3.8/Enums/Types/ShapeType.d.ts +0 -13
  1643. package/ts3.8/Enums/Types/StartValueType.d.ts +0 -5
  1644. package/ts3.8/Enums/Types/index.d.ts +0 -9
  1645. package/ts3.8/Enums/index.d.ts +0 -5
  1646. package/ts3.8/Interactions/External/Attract/Attractor.d.ts +0 -11
  1647. package/ts3.8/Interactions/External/Attract/index.d.ts +0 -2
  1648. package/ts3.8/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  1649. package/ts3.8/Interactions/External/Bounce/index.d.ts +0 -2
  1650. package/ts3.8/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  1651. package/ts3.8/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  1652. package/ts3.8/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  1653. package/ts3.8/Interactions/External/Bubble/index.d.ts +0 -2
  1654. package/ts3.8/Interactions/External/Connect/Connector.d.ts +0 -8
  1655. package/ts3.8/Interactions/External/Connect/index.d.ts +0 -2
  1656. package/ts3.8/Interactions/External/Grab/Grabber.d.ts +0 -8
  1657. package/ts3.8/Interactions/External/Grab/index.d.ts +0 -2
  1658. package/ts3.8/Interactions/External/Repulse/Repulser.d.ts +0 -12
  1659. package/ts3.8/Interactions/External/Repulse/index.d.ts +0 -2
  1660. package/ts3.8/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  1661. package/ts3.8/Interactions/External/Trail/index.d.ts +0 -2
  1662. package/ts3.8/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  1663. package/ts3.8/Interactions/Particles/Attract/index.d.ts +0 -2
  1664. package/ts3.8/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  1665. package/ts3.8/Interactions/Particles/Collisions/index.d.ts +0 -2
  1666. package/ts3.8/Interactions/Particles/Links/ILink.d.ts +0 -9
  1667. package/ts3.8/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  1668. package/ts3.8/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  1669. package/ts3.8/Interactions/Particles/Links/Linker.d.ts +0 -11
  1670. package/ts3.8/Interactions/Particles/Links/index.d.ts +0 -3
  1671. package/ts3.8/Interactions/Particles/Links/plugin.d.ts +0 -2
  1672. package/ts3.8/Options/Classes/AnimatableColor.d.ts +0 -11
  1673. package/ts3.8/Options/Classes/AnimatableGradient.d.ts +0 -53
  1674. package/ts3.8/Options/Classes/AnimationOptions.d.ts +0 -11
  1675. package/ts3.8/Options/Classes/Background/Background.d.ts +0 -14
  1676. package/ts3.8/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  1677. package/ts3.8/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  1678. package/ts3.8/Options/Classes/ColorAnimation.d.ts +0 -12
  1679. package/ts3.8/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  1680. package/ts3.8/Options/Classes/HslAnimation.d.ts +0 -11
  1681. package/ts3.8/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  1682. package/ts3.8/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  1683. package/ts3.8/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  1684. package/ts3.8/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  1685. package/ts3.8/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  1686. package/ts3.8/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  1687. package/ts3.8/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  1688. package/ts3.8/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  1689. package/ts3.8/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  1690. package/ts3.8/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  1691. package/ts3.8/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  1692. package/ts3.8/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  1693. package/ts3.8/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  1694. package/ts3.8/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  1695. package/ts3.8/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  1696. package/ts3.8/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  1697. package/ts3.8/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  1698. package/ts3.8/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  1699. package/ts3.8/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  1700. package/ts3.8/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  1701. package/ts3.8/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  1702. package/ts3.8/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  1703. package/ts3.8/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  1704. package/ts3.8/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  1705. package/ts3.8/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  1706. package/ts3.8/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  1707. package/ts3.8/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  1708. package/ts3.8/Options/Classes/ManualParticle.d.ts +0 -10
  1709. package/ts3.8/Options/Classes/Motion/Motion.d.ts +0 -10
  1710. package/ts3.8/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  1711. package/ts3.8/Options/Classes/Options.d.ts +0 -43
  1712. package/ts3.8/Options/Classes/OptionsColor.d.ts +0 -10
  1713. package/ts3.8/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  1714. package/ts3.8/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  1715. package/ts3.8/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  1716. package/ts3.8/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  1717. package/ts3.8/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  1718. package/ts3.8/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  1719. package/ts3.8/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  1720. package/ts3.8/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  1721. package/ts3.8/Options/Classes/Particles/Life/Life.d.ts +0 -12
  1722. package/ts3.8/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  1723. package/ts3.8/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  1724. package/ts3.8/Options/Classes/Particles/Links/Links.d.ts +0 -22
  1725. package/ts3.8/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  1726. package/ts3.8/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  1727. package/ts3.8/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  1728. package/ts3.8/Options/Classes/Particles/Move/Move.d.ts +0 -44
  1729. package/ts3.8/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  1730. package/ts3.8/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  1731. package/ts3.8/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  1732. package/ts3.8/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  1733. package/ts3.8/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  1734. package/ts3.8/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  1735. package/ts3.8/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  1736. package/ts3.8/Options/Classes/Particles/Number/Density.d.ts +0 -12
  1737. package/ts3.8/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  1738. package/ts3.8/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  1739. package/ts3.8/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  1740. package/ts3.8/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  1741. package/ts3.8/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  1742. package/ts3.8/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  1743. package/ts3.8/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  1744. package/ts3.8/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  1745. package/ts3.8/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  1746. package/ts3.8/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  1747. package/ts3.8/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  1748. package/ts3.8/Options/Classes/Particles/Shadow.d.ts +0 -13
  1749. package/ts3.8/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  1750. package/ts3.8/Options/Classes/Particles/Size/Size.d.ts +0 -12
  1751. package/ts3.8/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  1752. package/ts3.8/Options/Classes/Particles/Stroke.d.ts +0 -11
  1753. package/ts3.8/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  1754. package/ts3.8/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  1755. package/ts3.8/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  1756. package/ts3.8/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  1757. package/ts3.8/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  1758. package/ts3.8/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  1759. package/ts3.8/Options/Classes/Random.d.ts +0 -9
  1760. package/ts3.8/Options/Classes/Responsive.d.ts +0 -10
  1761. package/ts3.8/Options/Classes/Theme/Theme.d.ts +0 -12
  1762. package/ts3.8/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  1763. package/ts3.8/Options/Classes/ValueWithRandom.d.ts +0 -10
  1764. package/ts3.8/Options/Interfaces/Background/IBackground.d.ts +0 -9
  1765. package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  1766. package/ts3.8/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  1767. package/ts3.8/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  1768. package/ts3.8/Options/Interfaces/IAnimatable.d.ts +0 -4
  1769. package/ts3.8/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  1770. package/ts3.8/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  1771. package/ts3.8/Options/Interfaces/IAnimation.d.ts +0 -6
  1772. package/ts3.8/Options/Interfaces/IColorAnimation.d.ts +0 -5
  1773. package/ts3.8/Options/Interfaces/IHslAnimation.d.ts +0 -6
  1774. package/ts3.8/Options/Interfaces/IManualParticle.d.ts +0 -7
  1775. package/ts3.8/Options/Interfaces/IOptionLoader.d.ts +0 -4
  1776. package/ts3.8/Options/Interfaces/IOptions.d.ts +0 -33
  1777. package/ts3.8/Options/Interfaces/IOptionsColor.d.ts +0 -2
  1778. package/ts3.8/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  1779. package/ts3.8/Options/Interfaces/IRandom.d.ts +0 -4
  1780. package/ts3.8/Options/Interfaces/IResponsive.d.ts +0 -6
  1781. package/ts3.8/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  1782. package/ts3.8/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  1783. package/ts3.8/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  1784. package/ts3.8/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  1785. package/ts3.8/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  1786. package/ts3.8/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  1787. package/ts3.8/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  1788. package/ts3.8/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  1789. package/ts3.8/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  1790. package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  1791. package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  1792. package/ts3.8/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  1793. package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  1794. package/ts3.8/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  1795. package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  1796. package/ts3.8/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  1797. package/ts3.8/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  1798. package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  1799. package/ts3.8/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  1800. package/ts3.8/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  1801. package/ts3.8/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  1802. package/ts3.8/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  1803. package/ts3.8/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  1804. package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  1805. package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  1806. package/ts3.8/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  1807. package/ts3.8/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  1808. package/ts3.8/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  1809. package/ts3.8/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  1810. package/ts3.8/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  1811. package/ts3.8/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  1812. package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  1813. package/ts3.8/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  1814. package/ts3.8/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  1815. package/ts3.8/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  1816. package/ts3.8/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  1817. package/ts3.8/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  1818. package/ts3.8/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  1819. package/ts3.8/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  1820. package/ts3.8/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  1821. package/ts3.8/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  1822. package/ts3.8/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  1823. package/ts3.8/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  1824. package/ts3.8/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  1825. package/ts3.8/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  1826. package/ts3.8/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  1827. package/ts3.8/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  1828. package/ts3.8/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  1829. package/ts3.8/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  1830. package/ts3.8/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  1831. package/ts3.8/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  1832. package/ts3.8/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  1833. package/ts3.8/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  1834. package/ts3.8/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  1835. package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  1836. package/ts3.8/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  1837. package/ts3.8/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  1838. package/ts3.8/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  1839. package/ts3.8/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  1840. package/ts3.8/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  1841. package/ts3.8/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  1842. package/ts3.8/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  1843. package/ts3.8/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  1844. package/ts3.8/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  1845. package/ts3.8/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  1846. package/ts3.8/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  1847. package/ts3.8/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  1848. package/ts3.8/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  1849. package/ts3.8/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  1850. package/ts3.8/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  1851. package/ts3.8/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  1852. package/ts3.8/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  1853. package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  1854. package/ts3.8/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  1855. package/ts3.8/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  1856. package/ts3.8/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  1857. package/ts3.8/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  1858. package/ts3.8/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  1859. package/ts3.8/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  1860. package/ts3.8/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  1861. package/ts3.8/Plugins/Absorbers/Absorbers.d.ts +0 -25
  1862. package/ts3.8/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  1863. package/ts3.8/Plugins/Absorbers/Enums/index.d.ts +0 -1
  1864. package/ts3.8/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  1865. package/ts3.8/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  1866. package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  1867. package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  1868. package/ts3.8/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  1869. package/ts3.8/Plugins/Absorbers/plugin.d.ts +0 -2
  1870. package/ts3.8/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  1871. package/ts3.8/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  1872. package/ts3.8/Plugins/Emitters/Emitters.d.ts +0 -24
  1873. package/ts3.8/Plugins/Emitters/EmittersMain.d.ts +0 -5
  1874. package/ts3.8/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  1875. package/ts3.8/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  1876. package/ts3.8/Plugins/Emitters/Enums/index.d.ts +0 -2
  1877. package/ts3.8/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  1878. package/ts3.8/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  1879. package/ts3.8/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  1880. package/ts3.8/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  1881. package/ts3.8/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  1882. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  1883. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  1884. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  1885. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  1886. package/ts3.8/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  1887. package/ts3.8/Plugins/Emitters/ShapeManager.d.ts +0 -6
  1888. package/ts3.8/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  1889. package/ts3.8/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  1890. package/ts3.8/Plugins/Emitters/plugin.d.ts +0 -3
  1891. package/ts3.8/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  1892. package/ts3.8/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  1893. package/ts3.8/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  1894. package/ts3.8/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  1895. package/ts3.8/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  1896. package/ts3.8/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  1897. package/ts3.8/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  1898. package/ts3.8/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  1899. package/ts3.8/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  1900. package/ts3.8/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  1901. package/ts3.8/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  1902. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  1903. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  1904. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  1905. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  1906. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  1907. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  1908. package/ts3.8/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  1909. package/ts3.8/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  1910. package/ts3.8/Plugins/PolygonMask/plugin.d.ts +0 -2
  1911. package/ts3.8/Shapes/Circle/CircleDrawer.d.ts +0 -5
  1912. package/ts3.8/Shapes/Circle/index.d.ts +0 -2
  1913. package/ts3.8/Shapes/Image/ImageDrawer.d.ts +0 -22
  1914. package/ts3.8/Shapes/Image/Utils.d.ts +0 -25
  1915. package/ts3.8/Shapes/Image/index.d.ts +0 -2
  1916. package/ts3.8/Shapes/Line/LineDrawer.d.ts +0 -5
  1917. package/ts3.8/Shapes/Line/index.d.ts +0 -2
  1918. package/ts3.8/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  1919. package/ts3.8/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  1920. package/ts3.8/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  1921. package/ts3.8/Shapes/Polygon/index.d.ts +0 -4
  1922. package/ts3.8/Shapes/Square/SquareDrawer.d.ts +0 -5
  1923. package/ts3.8/Shapes/Square/index.d.ts +0 -2
  1924. package/ts3.8/Shapes/Star/StarDrawer.d.ts +0 -5
  1925. package/ts3.8/Shapes/Star/index.d.ts +0 -2
  1926. package/ts3.8/Shapes/Text/TextDrawer.d.ts +0 -8
  1927. package/ts3.8/Shapes/Text/index.d.ts +0 -2
  1928. package/ts3.8/Types/ParticlesGroups.d.ts +0 -4
  1929. package/ts3.8/Types/PathOptions.d.ts +0 -3
  1930. package/ts3.8/Types/RangeValue.d.ts +0 -2
  1931. package/ts3.8/Types/RecursivePartial.d.ts +0 -3
  1932. package/ts3.8/Types/ShapeData.d.ts +0 -5
  1933. package/ts3.8/Types/ShapeDrawerFunctions.d.ts +0 -11
  1934. package/ts3.8/Types/SingleOrMultiple.d.ts +0 -1
  1935. package/ts3.8/Types/index.d.ts +0 -6
  1936. package/ts3.8/Updaters/Angle/AngleUpdater.d.ts +0 -6
  1937. package/ts3.8/Updaters/Angle/index.d.ts +0 -2
  1938. package/ts3.8/Updaters/Color/ColorUpdater.d.ts +0 -6
  1939. package/ts3.8/Updaters/Color/index.d.ts +0 -2
  1940. package/ts3.8/Updaters/Life/LifeUpdater.d.ts +0 -9
  1941. package/ts3.8/Updaters/Life/index.d.ts +0 -2
  1942. package/ts3.8/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  1943. package/ts3.8/Updaters/Opacity/index.d.ts +0 -2
  1944. package/ts3.8/Updaters/OutModes/IBounceData.d.ts +0 -12
  1945. package/ts3.8/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  1946. package/ts3.8/Updaters/OutModes/Utils.d.ts +0 -3
  1947. package/ts3.8/Updaters/OutModes/index.d.ts +0 -2
  1948. package/ts3.8/Updaters/Roll/RollUpdater.d.ts +0 -6
  1949. package/ts3.8/Updaters/Roll/index.d.ts +0 -2
  1950. package/ts3.8/Updaters/Size/SizeUpdater.d.ts +0 -6
  1951. package/ts3.8/Updaters/Size/index.d.ts +0 -2
  1952. package/ts3.8/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  1953. package/ts3.8/Updaters/StrokeColor/index.d.ts +0 -2
  1954. package/ts3.8/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  1955. package/ts3.8/Updaters/Tilt/index.d.ts +0 -2
  1956. package/ts3.8/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  1957. package/ts3.8/Updaters/Wobble/index.d.ts +0 -2
  1958. package/ts3.8/Utils/CanvasUtils.d.ts +0 -18
  1959. package/ts3.8/Utils/Circle.d.ts +0 -8
  1960. package/ts3.8/Utils/CircleWarp.d.ts +0 -10
  1961. package/ts3.8/Utils/ColorUtils.d.ts +0 -26
  1962. package/ts3.8/Utils/Constants.d.ts +0 -18
  1963. package/ts3.8/Utils/EventListeners.d.ts +0 -30
  1964. package/ts3.8/Utils/NumberUtils.d.ts +0 -23
  1965. package/ts3.8/Utils/Plugins.d.ts +0 -22
  1966. package/ts3.8/Utils/Point.d.ts +0 -7
  1967. package/ts3.8/Utils/QuadTree.d.ts +0 -23
  1968. package/ts3.8/Utils/Range.d.ts +0 -7
  1969. package/ts3.8/Utils/Rectangle.d.ts +0 -9
  1970. package/ts3.8/Utils/Utils.d.ts +0 -65
  1971. package/ts3.8/Utils/index.d.ts +0 -13
  1972. package/ts3.8/browser/Core/Canvas.d.ts +0 -36
  1973. package/ts3.8/browser/Core/Container.d.ts +0 -64
  1974. package/ts3.8/browser/Core/ExternalInteractorBase.d.ts +0 -12
  1975. package/ts3.8/browser/Core/FrameManager.d.ts +0 -6
  1976. package/ts3.8/browser/Core/InteractionManager.d.ts +0 -11
  1977. package/ts3.8/browser/Core/Interfaces/Colors.d.ts +0 -33
  1978. package/ts3.8/browser/Core/Interfaces/Gradients.d.ts +0 -21
  1979. package/ts3.8/browser/Core/Interfaces/IAttract.d.ts +0 -7
  1980. package/ts3.8/browser/Core/Interfaces/IBounds.d.ts +0 -6
  1981. package/ts3.8/browser/Core/Interfaces/IBubble.d.ts +0 -4
  1982. package/ts3.8/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  1983. package/ts3.8/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  1984. package/ts3.8/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  1985. package/ts3.8/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  1986. package/ts3.8/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
  1987. package/ts3.8/browser/Core/Interfaces/IDelta.d.ts +0 -4
  1988. package/ts3.8/browser/Core/Interfaces/IDimension.d.ts +0 -4
  1989. package/ts3.8/browser/Core/Interfaces/IDistance.d.ts +0 -4
  1990. package/ts3.8/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  1991. package/ts3.8/browser/Core/Interfaces/IInteractor.d.ts +0 -6
  1992. package/ts3.8/browser/Core/Interfaces/IMouseData.d.ts +0 -9
  1993. package/ts3.8/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  1994. package/ts3.8/browser/Core/Interfaces/IParticle.d.ts +0 -59
  1995. package/ts3.8/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  1996. package/ts3.8/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  1997. package/ts3.8/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  1998. package/ts3.8/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
  1999. package/ts3.8/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
  2000. package/ts3.8/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
  2001. package/ts3.8/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  2002. package/ts3.8/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  2003. package/ts3.8/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  2004. package/ts3.8/browser/Core/Interfaces/IPlugin.d.ts +0 -11
  2005. package/ts3.8/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
  2006. package/ts3.8/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
  2007. package/ts3.8/browser/Core/Interfaces/IRepulse.d.ts +0 -7
  2008. package/ts3.8/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  2009. package/ts3.8/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
  2010. package/ts3.8/browser/Core/Interfaces/index.d.ts +0 -33
  2011. package/ts3.8/browser/Core/Loader.d.ts +0 -14
  2012. package/ts3.8/browser/Core/Particle/Mover.d.ts +0 -13
  2013. package/ts3.8/browser/Core/Particle/Vector.d.ts +0 -29
  2014. package/ts3.8/browser/Core/Particle/Vector3d.d.ts +0 -18
  2015. package/ts3.8/browser/Core/Particle.d.ts +0 -84
  2016. package/ts3.8/browser/Core/Particles.d.ts +0 -45
  2017. package/ts3.8/browser/Core/ParticlesInteractorBase.d.ts +0 -12
  2018. package/ts3.8/browser/Core/Retina.d.ts +0 -26
  2019. package/ts3.8/browser/Enums/AnimationStatus.d.ts +0 -4
  2020. package/ts3.8/browser/Enums/Directions/MoveDirection.d.ts +0 -12
  2021. package/ts3.8/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
  2022. package/ts3.8/browser/Enums/Directions/RotateDirection.d.ts +0 -6
  2023. package/ts3.8/browser/Enums/Directions/TiltDirection.d.ts +0 -6
  2024. package/ts3.8/browser/Enums/Directions/index.d.ts +0 -4
  2025. package/ts3.8/browser/Enums/InteractivityDetect.d.ts +0 -5
  2026. package/ts3.8/browser/Enums/Modes/ClickMode.d.ts +0 -9
  2027. package/ts3.8/browser/Enums/Modes/CollisionMode.d.ts +0 -5
  2028. package/ts3.8/browser/Enums/Modes/DestroyMode.d.ts +0 -4
  2029. package/ts3.8/browser/Enums/Modes/DivMode.d.ts +0 -5
  2030. package/ts3.8/browser/Enums/Modes/HoverMode.d.ts +0 -11
  2031. package/ts3.8/browser/Enums/Modes/OutMode.d.ts +0 -10
  2032. package/ts3.8/browser/Enums/Modes/SizeMode.d.ts +0 -4
  2033. package/ts3.8/browser/Enums/Modes/ThemeMode.d.ts +0 -5
  2034. package/ts3.8/browser/Enums/Modes/index.d.ts +0 -8
  2035. package/ts3.8/browser/Enums/Types/AlterType.d.ts +0 -4
  2036. package/ts3.8/browser/Enums/Types/DestroyType.d.ts +0 -5
  2037. package/ts3.8/browser/Enums/Types/DivType.d.ts +0 -4
  2038. package/ts3.8/browser/Enums/Types/EasingType.d.ts +0 -10
  2039. package/ts3.8/browser/Enums/Types/GradientType.d.ts +0 -5
  2040. package/ts3.8/browser/Enums/Types/InteractorType.d.ts +0 -4
  2041. package/ts3.8/browser/Enums/Types/OrbitType.d.ts +0 -4
  2042. package/ts3.8/browser/Enums/Types/ShapeType.d.ts +0 -13
  2043. package/ts3.8/browser/Enums/Types/StartValueType.d.ts +0 -5
  2044. package/ts3.8/browser/Enums/Types/index.d.ts +0 -9
  2045. package/ts3.8/browser/Enums/index.d.ts +0 -5
  2046. package/ts3.8/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
  2047. package/ts3.8/browser/Interactions/External/Attract/index.d.ts +0 -2
  2048. package/ts3.8/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  2049. package/ts3.8/browser/Interactions/External/Bounce/index.d.ts +0 -2
  2050. package/ts3.8/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  2051. package/ts3.8/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  2052. package/ts3.8/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  2053. package/ts3.8/browser/Interactions/External/Bubble/index.d.ts +0 -2
  2054. package/ts3.8/browser/Interactions/External/Connect/Connector.d.ts +0 -8
  2055. package/ts3.8/browser/Interactions/External/Connect/index.d.ts +0 -2
  2056. package/ts3.8/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
  2057. package/ts3.8/browser/Interactions/External/Grab/index.d.ts +0 -2
  2058. package/ts3.8/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
  2059. package/ts3.8/browser/Interactions/External/Repulse/index.d.ts +0 -2
  2060. package/ts3.8/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  2061. package/ts3.8/browser/Interactions/External/Trail/index.d.ts +0 -2
  2062. package/ts3.8/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  2063. package/ts3.8/browser/Interactions/Particles/Attract/index.d.ts +0 -2
  2064. package/ts3.8/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  2065. package/ts3.8/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
  2066. package/ts3.8/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
  2067. package/ts3.8/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  2068. package/ts3.8/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  2069. package/ts3.8/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
  2070. package/ts3.8/browser/Interactions/Particles/Links/index.d.ts +0 -3
  2071. package/ts3.8/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
  2072. package/ts3.8/browser/Options/Classes/AnimatableColor.d.ts +0 -11
  2073. package/ts3.8/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
  2074. package/ts3.8/browser/Options/Classes/AnimationOptions.d.ts +0 -11
  2075. package/ts3.8/browser/Options/Classes/Background/Background.d.ts +0 -14
  2076. package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  2077. package/ts3.8/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  2078. package/ts3.8/browser/Options/Classes/ColorAnimation.d.ts +0 -12
  2079. package/ts3.8/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  2080. package/ts3.8/browser/Options/Classes/HslAnimation.d.ts +0 -11
  2081. package/ts3.8/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  2082. package/ts3.8/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  2083. package/ts3.8/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  2084. package/ts3.8/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  2085. package/ts3.8/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  2086. package/ts3.8/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  2087. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  2088. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  2089. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  2090. package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  2091. package/ts3.8/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  2092. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  2093. package/ts3.8/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  2094. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  2095. package/ts3.8/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  2096. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  2097. package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  2098. package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  2099. package/ts3.8/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  2100. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  2101. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  2102. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  2103. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  2104. package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  2105. package/ts3.8/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  2106. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  2107. package/ts3.8/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  2108. package/ts3.8/browser/Options/Classes/ManualParticle.d.ts +0 -10
  2109. package/ts3.8/browser/Options/Classes/Motion/Motion.d.ts +0 -10
  2110. package/ts3.8/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  2111. package/ts3.8/browser/Options/Classes/Options.d.ts +0 -43
  2112. package/ts3.8/browser/Options/Classes/OptionsColor.d.ts +0 -10
  2113. package/ts3.8/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  2114. package/ts3.8/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  2115. package/ts3.8/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  2116. package/ts3.8/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  2117. package/ts3.8/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  2118. package/ts3.8/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  2119. package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  2120. package/ts3.8/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  2121. package/ts3.8/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
  2122. package/ts3.8/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  2123. package/ts3.8/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  2124. package/ts3.8/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
  2125. package/ts3.8/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  2126. package/ts3.8/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  2127. package/ts3.8/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  2128. package/ts3.8/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
  2129. package/ts3.8/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  2130. package/ts3.8/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  2131. package/ts3.8/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  2132. package/ts3.8/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  2133. package/ts3.8/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  2134. package/ts3.8/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  2135. package/ts3.8/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  2136. package/ts3.8/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
  2137. package/ts3.8/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  2138. package/ts3.8/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  2139. package/ts3.8/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  2140. package/ts3.8/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  2141. package/ts3.8/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  2142. package/ts3.8/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  2143. package/ts3.8/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  2144. package/ts3.8/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  2145. package/ts3.8/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  2146. package/ts3.8/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  2147. package/ts3.8/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  2148. package/ts3.8/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
  2149. package/ts3.8/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  2150. package/ts3.8/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
  2151. package/ts3.8/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  2152. package/ts3.8/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
  2153. package/ts3.8/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  2154. package/ts3.8/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  2155. package/ts3.8/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  2156. package/ts3.8/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  2157. package/ts3.8/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  2158. package/ts3.8/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  2159. package/ts3.8/browser/Options/Classes/Random.d.ts +0 -9
  2160. package/ts3.8/browser/Options/Classes/Responsive.d.ts +0 -10
  2161. package/ts3.8/browser/Options/Classes/Theme/Theme.d.ts +0 -12
  2162. package/ts3.8/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  2163. package/ts3.8/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
  2164. package/ts3.8/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
  2165. package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  2166. package/ts3.8/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  2167. package/ts3.8/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  2168. package/ts3.8/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
  2169. package/ts3.8/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  2170. package/ts3.8/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  2171. package/ts3.8/browser/Options/Interfaces/IAnimation.d.ts +0 -6
  2172. package/ts3.8/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
  2173. package/ts3.8/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
  2174. package/ts3.8/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
  2175. package/ts3.8/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
  2176. package/ts3.8/browser/Options/Interfaces/IOptions.d.ts +0 -33
  2177. package/ts3.8/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
  2178. package/ts3.8/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  2179. package/ts3.8/browser/Options/Interfaces/IRandom.d.ts +0 -4
  2180. package/ts3.8/browser/Options/Interfaces/IResponsive.d.ts +0 -6
  2181. package/ts3.8/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  2182. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  2183. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  2184. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  2185. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  2186. package/ts3.8/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  2187. package/ts3.8/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  2188. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  2189. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  2190. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  2191. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  2192. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  2193. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  2194. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  2195. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  2196. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  2197. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  2198. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  2199. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  2200. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  2201. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  2202. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  2203. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  2204. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  2205. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  2206. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  2207. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  2208. package/ts3.8/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  2209. package/ts3.8/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  2210. package/ts3.8/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  2211. package/ts3.8/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  2212. package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  2213. package/ts3.8/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  2214. package/ts3.8/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  2215. package/ts3.8/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  2216. package/ts3.8/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  2217. package/ts3.8/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  2218. package/ts3.8/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  2219. package/ts3.8/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  2220. package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  2221. package/ts3.8/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  2222. package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  2223. package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  2224. package/ts3.8/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  2225. package/ts3.8/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  2226. package/ts3.8/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  2227. package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  2228. package/ts3.8/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  2229. package/ts3.8/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  2230. package/ts3.8/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  2231. package/ts3.8/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  2232. package/ts3.8/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  2233. package/ts3.8/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  2234. package/ts3.8/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  2235. package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  2236. package/ts3.8/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  2237. package/ts3.8/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  2238. package/ts3.8/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  2239. package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  2240. package/ts3.8/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  2241. package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  2242. package/ts3.8/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  2243. package/ts3.8/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  2244. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  2245. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  2246. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  2247. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  2248. package/ts3.8/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  2249. package/ts3.8/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  2250. package/ts3.8/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  2251. package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  2252. package/ts3.8/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  2253. package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  2254. package/ts3.8/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  2255. package/ts3.8/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  2256. package/ts3.8/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  2257. package/ts3.8/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  2258. package/ts3.8/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  2259. package/ts3.8/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  2260. package/ts3.8/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  2261. package/ts3.8/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
  2262. package/ts3.8/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  2263. package/ts3.8/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
  2264. package/ts3.8/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  2265. package/ts3.8/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  2266. package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  2267. package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  2268. package/ts3.8/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  2269. package/ts3.8/browser/Plugins/Absorbers/plugin.d.ts +0 -2
  2270. package/ts3.8/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  2271. package/ts3.8/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  2272. package/ts3.8/browser/Plugins/Emitters/Emitters.d.ts +0 -24
  2273. package/ts3.8/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
  2274. package/ts3.8/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  2275. package/ts3.8/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  2276. package/ts3.8/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
  2277. package/ts3.8/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  2278. package/ts3.8/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  2279. package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  2280. package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  2281. package/ts3.8/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  2282. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  2283. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  2284. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  2285. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  2286. package/ts3.8/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  2287. package/ts3.8/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
  2288. package/ts3.8/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  2289. package/ts3.8/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  2290. package/ts3.8/browser/Plugins/Emitters/plugin.d.ts +0 -3
  2291. package/ts3.8/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  2292. package/ts3.8/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  2293. package/ts3.8/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  2294. package/ts3.8/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  2295. package/ts3.8/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  2296. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  2297. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  2298. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  2299. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  2300. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  2301. package/ts3.8/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  2302. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  2303. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  2304. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  2305. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  2306. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  2307. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  2308. package/ts3.8/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  2309. package/ts3.8/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  2310. package/ts3.8/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
  2311. package/ts3.8/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
  2312. package/ts3.8/browser/Shapes/Circle/index.d.ts +0 -2
  2313. package/ts3.8/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
  2314. package/ts3.8/browser/Shapes/Image/Utils.d.ts +0 -25
  2315. package/ts3.8/browser/Shapes/Image/index.d.ts +0 -2
  2316. package/ts3.8/browser/Shapes/Line/LineDrawer.d.ts +0 -5
  2317. package/ts3.8/browser/Shapes/Line/index.d.ts +0 -2
  2318. package/ts3.8/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  2319. package/ts3.8/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  2320. package/ts3.8/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  2321. package/ts3.8/browser/Shapes/Polygon/index.d.ts +0 -4
  2322. package/ts3.8/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
  2323. package/ts3.8/browser/Shapes/Square/index.d.ts +0 -2
  2324. package/ts3.8/browser/Shapes/Star/StarDrawer.d.ts +0 -5
  2325. package/ts3.8/browser/Shapes/Star/index.d.ts +0 -2
  2326. package/ts3.8/browser/Shapes/Text/TextDrawer.d.ts +0 -8
  2327. package/ts3.8/browser/Shapes/Text/index.d.ts +0 -2
  2328. package/ts3.8/browser/Types/ParticlesGroups.d.ts +0 -4
  2329. package/ts3.8/browser/Types/PathOptions.d.ts +0 -3
  2330. package/ts3.8/browser/Types/RangeValue.d.ts +0 -2
  2331. package/ts3.8/browser/Types/RecursivePartial.d.ts +0 -3
  2332. package/ts3.8/browser/Types/ShapeData.d.ts +0 -5
  2333. package/ts3.8/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
  2334. package/ts3.8/browser/Types/SingleOrMultiple.d.ts +0 -1
  2335. package/ts3.8/browser/Types/index.d.ts +0 -6
  2336. package/ts3.8/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
  2337. package/ts3.8/browser/Updaters/Angle/index.d.ts +0 -2
  2338. package/ts3.8/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
  2339. package/ts3.8/browser/Updaters/Color/index.d.ts +0 -2
  2340. package/ts3.8/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
  2341. package/ts3.8/browser/Updaters/Life/index.d.ts +0 -2
  2342. package/ts3.8/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  2343. package/ts3.8/browser/Updaters/Opacity/index.d.ts +0 -2
  2344. package/ts3.8/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
  2345. package/ts3.8/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  2346. package/ts3.8/browser/Updaters/OutModes/Utils.d.ts +0 -3
  2347. package/ts3.8/browser/Updaters/OutModes/index.d.ts +0 -2
  2348. package/ts3.8/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
  2349. package/ts3.8/browser/Updaters/Roll/index.d.ts +0 -2
  2350. package/ts3.8/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
  2351. package/ts3.8/browser/Updaters/Size/index.d.ts +0 -2
  2352. package/ts3.8/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  2353. package/ts3.8/browser/Updaters/StrokeColor/index.d.ts +0 -2
  2354. package/ts3.8/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  2355. package/ts3.8/browser/Updaters/Tilt/index.d.ts +0 -2
  2356. package/ts3.8/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  2357. package/ts3.8/browser/Updaters/Wobble/index.d.ts +0 -2
  2358. package/ts3.8/browser/Utils/CanvasUtils.d.ts +0 -18
  2359. package/ts3.8/browser/Utils/Circle.d.ts +0 -8
  2360. package/ts3.8/browser/Utils/CircleWarp.d.ts +0 -10
  2361. package/ts3.8/browser/Utils/ColorUtils.d.ts +0 -26
  2362. package/ts3.8/browser/Utils/Constants.d.ts +0 -18
  2363. package/ts3.8/browser/Utils/EventListeners.d.ts +0 -30
  2364. package/ts3.8/browser/Utils/NumberUtils.d.ts +0 -23
  2365. package/ts3.8/browser/Utils/Plugins.d.ts +0 -22
  2366. package/ts3.8/browser/Utils/Point.d.ts +0 -7
  2367. package/ts3.8/browser/Utils/QuadTree.d.ts +0 -23
  2368. package/ts3.8/browser/Utils/Range.d.ts +0 -7
  2369. package/ts3.8/browser/Utils/Rectangle.d.ts +0 -9
  2370. package/ts3.8/browser/Utils/Utils.d.ts +0 -65
  2371. package/ts3.8/browser/Utils/index.d.ts +0 -13
  2372. package/ts3.8/browser/full.d.ts +0 -2
  2373. package/ts3.8/browser/index.d.ts +0 -31
  2374. package/ts3.8/browser/index.slim.d.ts +0 -25
  2375. package/ts3.8/browser/main.d.ts +0 -24
  2376. package/ts3.8/browser/pjs.d.ts +0 -14
  2377. package/ts3.8/browser/slim.d.ts +0 -2
  2378. package/ts3.8/esm/Core/Canvas.d.ts +0 -36
  2379. package/ts3.8/esm/Core/Container.d.ts +0 -64
  2380. package/ts3.8/esm/Core/ExternalInteractorBase.d.ts +0 -12
  2381. package/ts3.8/esm/Core/FrameManager.d.ts +0 -6
  2382. package/ts3.8/esm/Core/InteractionManager.d.ts +0 -11
  2383. package/ts3.8/esm/Core/Interfaces/Colors.d.ts +0 -33
  2384. package/ts3.8/esm/Core/Interfaces/Gradients.d.ts +0 -21
  2385. package/ts3.8/esm/Core/Interfaces/IAttract.d.ts +0 -7
  2386. package/ts3.8/esm/Core/Interfaces/IBounds.d.ts +0 -6
  2387. package/ts3.8/esm/Core/Interfaces/IBubble.d.ts +0 -4
  2388. package/ts3.8/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  2389. package/ts3.8/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  2390. package/ts3.8/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  2391. package/ts3.8/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  2392. package/ts3.8/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
  2393. package/ts3.8/esm/Core/Interfaces/IDelta.d.ts +0 -4
  2394. package/ts3.8/esm/Core/Interfaces/IDimension.d.ts +0 -4
  2395. package/ts3.8/esm/Core/Interfaces/IDistance.d.ts +0 -4
  2396. package/ts3.8/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  2397. package/ts3.8/esm/Core/Interfaces/IInteractor.d.ts +0 -6
  2398. package/ts3.8/esm/Core/Interfaces/IMouseData.d.ts +0 -9
  2399. package/ts3.8/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  2400. package/ts3.8/esm/Core/Interfaces/IParticle.d.ts +0 -59
  2401. package/ts3.8/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  2402. package/ts3.8/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  2403. package/ts3.8/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  2404. package/ts3.8/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
  2405. package/ts3.8/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
  2406. package/ts3.8/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
  2407. package/ts3.8/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  2408. package/ts3.8/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  2409. package/ts3.8/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  2410. package/ts3.8/esm/Core/Interfaces/IPlugin.d.ts +0 -11
  2411. package/ts3.8/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
  2412. package/ts3.8/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
  2413. package/ts3.8/esm/Core/Interfaces/IRepulse.d.ts +0 -7
  2414. package/ts3.8/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  2415. package/ts3.8/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
  2416. package/ts3.8/esm/Core/Interfaces/index.d.ts +0 -33
  2417. package/ts3.8/esm/Core/Loader.d.ts +0 -14
  2418. package/ts3.8/esm/Core/Particle/Mover.d.ts +0 -13
  2419. package/ts3.8/esm/Core/Particle/Vector.d.ts +0 -29
  2420. package/ts3.8/esm/Core/Particle/Vector3d.d.ts +0 -18
  2421. package/ts3.8/esm/Core/Particle.d.ts +0 -84
  2422. package/ts3.8/esm/Core/Particles.d.ts +0 -45
  2423. package/ts3.8/esm/Core/ParticlesInteractorBase.d.ts +0 -12
  2424. package/ts3.8/esm/Core/Retina.d.ts +0 -26
  2425. package/ts3.8/esm/Enums/AnimationStatus.d.ts +0 -4
  2426. package/ts3.8/esm/Enums/Directions/MoveDirection.d.ts +0 -12
  2427. package/ts3.8/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
  2428. package/ts3.8/esm/Enums/Directions/RotateDirection.d.ts +0 -6
  2429. package/ts3.8/esm/Enums/Directions/TiltDirection.d.ts +0 -6
  2430. package/ts3.8/esm/Enums/Directions/index.d.ts +0 -4
  2431. package/ts3.8/esm/Enums/InteractivityDetect.d.ts +0 -5
  2432. package/ts3.8/esm/Enums/Modes/ClickMode.d.ts +0 -9
  2433. package/ts3.8/esm/Enums/Modes/CollisionMode.d.ts +0 -5
  2434. package/ts3.8/esm/Enums/Modes/DestroyMode.d.ts +0 -4
  2435. package/ts3.8/esm/Enums/Modes/DivMode.d.ts +0 -5
  2436. package/ts3.8/esm/Enums/Modes/HoverMode.d.ts +0 -11
  2437. package/ts3.8/esm/Enums/Modes/OutMode.d.ts +0 -10
  2438. package/ts3.8/esm/Enums/Modes/SizeMode.d.ts +0 -4
  2439. package/ts3.8/esm/Enums/Modes/ThemeMode.d.ts +0 -5
  2440. package/ts3.8/esm/Enums/Modes/index.d.ts +0 -8
  2441. package/ts3.8/esm/Enums/Types/AlterType.d.ts +0 -4
  2442. package/ts3.8/esm/Enums/Types/DestroyType.d.ts +0 -5
  2443. package/ts3.8/esm/Enums/Types/DivType.d.ts +0 -4
  2444. package/ts3.8/esm/Enums/Types/EasingType.d.ts +0 -10
  2445. package/ts3.8/esm/Enums/Types/GradientType.d.ts +0 -5
  2446. package/ts3.8/esm/Enums/Types/InteractorType.d.ts +0 -4
  2447. package/ts3.8/esm/Enums/Types/OrbitType.d.ts +0 -4
  2448. package/ts3.8/esm/Enums/Types/ShapeType.d.ts +0 -13
  2449. package/ts3.8/esm/Enums/Types/StartValueType.d.ts +0 -5
  2450. package/ts3.8/esm/Enums/Types/index.d.ts +0 -9
  2451. package/ts3.8/esm/Enums/index.d.ts +0 -5
  2452. package/ts3.8/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
  2453. package/ts3.8/esm/Interactions/External/Attract/index.d.ts +0 -2
  2454. package/ts3.8/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  2455. package/ts3.8/esm/Interactions/External/Bounce/index.d.ts +0 -2
  2456. package/ts3.8/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  2457. package/ts3.8/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  2458. package/ts3.8/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  2459. package/ts3.8/esm/Interactions/External/Bubble/index.d.ts +0 -2
  2460. package/ts3.8/esm/Interactions/External/Connect/Connector.d.ts +0 -8
  2461. package/ts3.8/esm/Interactions/External/Connect/index.d.ts +0 -2
  2462. package/ts3.8/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
  2463. package/ts3.8/esm/Interactions/External/Grab/index.d.ts +0 -2
  2464. package/ts3.8/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
  2465. package/ts3.8/esm/Interactions/External/Repulse/index.d.ts +0 -2
  2466. package/ts3.8/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  2467. package/ts3.8/esm/Interactions/External/Trail/index.d.ts +0 -2
  2468. package/ts3.8/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  2469. package/ts3.8/esm/Interactions/Particles/Attract/index.d.ts +0 -2
  2470. package/ts3.8/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  2471. package/ts3.8/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
  2472. package/ts3.8/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
  2473. package/ts3.8/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  2474. package/ts3.8/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  2475. package/ts3.8/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
  2476. package/ts3.8/esm/Interactions/Particles/Links/index.d.ts +0 -3
  2477. package/ts3.8/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
  2478. package/ts3.8/esm/Options/Classes/AnimatableColor.d.ts +0 -11
  2479. package/ts3.8/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
  2480. package/ts3.8/esm/Options/Classes/AnimationOptions.d.ts +0 -11
  2481. package/ts3.8/esm/Options/Classes/Background/Background.d.ts +0 -14
  2482. package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  2483. package/ts3.8/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  2484. package/ts3.8/esm/Options/Classes/ColorAnimation.d.ts +0 -12
  2485. package/ts3.8/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  2486. package/ts3.8/esm/Options/Classes/HslAnimation.d.ts +0 -11
  2487. package/ts3.8/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  2488. package/ts3.8/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  2489. package/ts3.8/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  2490. package/ts3.8/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  2491. package/ts3.8/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  2492. package/ts3.8/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  2493. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  2494. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  2495. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  2496. package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  2497. package/ts3.8/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  2498. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  2499. package/ts3.8/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  2500. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  2501. package/ts3.8/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  2502. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  2503. package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  2504. package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  2505. package/ts3.8/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  2506. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  2507. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  2508. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  2509. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  2510. package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  2511. package/ts3.8/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  2512. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  2513. package/ts3.8/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  2514. package/ts3.8/esm/Options/Classes/ManualParticle.d.ts +0 -10
  2515. package/ts3.8/esm/Options/Classes/Motion/Motion.d.ts +0 -10
  2516. package/ts3.8/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  2517. package/ts3.8/esm/Options/Classes/Options.d.ts +0 -43
  2518. package/ts3.8/esm/Options/Classes/OptionsColor.d.ts +0 -10
  2519. package/ts3.8/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  2520. package/ts3.8/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  2521. package/ts3.8/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  2522. package/ts3.8/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  2523. package/ts3.8/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  2524. package/ts3.8/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  2525. package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  2526. package/ts3.8/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  2527. package/ts3.8/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
  2528. package/ts3.8/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  2529. package/ts3.8/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  2530. package/ts3.8/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
  2531. package/ts3.8/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  2532. package/ts3.8/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  2533. package/ts3.8/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  2534. package/ts3.8/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
  2535. package/ts3.8/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  2536. package/ts3.8/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  2537. package/ts3.8/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  2538. package/ts3.8/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  2539. package/ts3.8/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  2540. package/ts3.8/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  2541. package/ts3.8/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  2542. package/ts3.8/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
  2543. package/ts3.8/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  2544. package/ts3.8/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  2545. package/ts3.8/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  2546. package/ts3.8/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  2547. package/ts3.8/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  2548. package/ts3.8/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  2549. package/ts3.8/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  2550. package/ts3.8/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  2551. package/ts3.8/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  2552. package/ts3.8/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  2553. package/ts3.8/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  2554. package/ts3.8/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
  2555. package/ts3.8/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  2556. package/ts3.8/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
  2557. package/ts3.8/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  2558. package/ts3.8/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
  2559. package/ts3.8/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  2560. package/ts3.8/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  2561. package/ts3.8/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  2562. package/ts3.8/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  2563. package/ts3.8/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  2564. package/ts3.8/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  2565. package/ts3.8/esm/Options/Classes/Random.d.ts +0 -9
  2566. package/ts3.8/esm/Options/Classes/Responsive.d.ts +0 -10
  2567. package/ts3.8/esm/Options/Classes/Theme/Theme.d.ts +0 -12
  2568. package/ts3.8/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  2569. package/ts3.8/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
  2570. package/ts3.8/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
  2571. package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  2572. package/ts3.8/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  2573. package/ts3.8/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  2574. package/ts3.8/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
  2575. package/ts3.8/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  2576. package/ts3.8/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  2577. package/ts3.8/esm/Options/Interfaces/IAnimation.d.ts +0 -6
  2578. package/ts3.8/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
  2579. package/ts3.8/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
  2580. package/ts3.8/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
  2581. package/ts3.8/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
  2582. package/ts3.8/esm/Options/Interfaces/IOptions.d.ts +0 -33
  2583. package/ts3.8/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
  2584. package/ts3.8/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  2585. package/ts3.8/esm/Options/Interfaces/IRandom.d.ts +0 -4
  2586. package/ts3.8/esm/Options/Interfaces/IResponsive.d.ts +0 -6
  2587. package/ts3.8/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  2588. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  2589. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  2590. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  2591. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  2592. package/ts3.8/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  2593. package/ts3.8/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  2594. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  2595. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  2596. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  2597. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  2598. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  2599. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  2600. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  2601. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  2602. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  2603. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  2604. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  2605. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  2606. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  2607. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  2608. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  2609. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  2610. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  2611. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  2612. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  2613. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  2614. package/ts3.8/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  2615. package/ts3.8/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  2616. package/ts3.8/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  2617. package/ts3.8/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  2618. package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  2619. package/ts3.8/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  2620. package/ts3.8/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  2621. package/ts3.8/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  2622. package/ts3.8/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  2623. package/ts3.8/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  2624. package/ts3.8/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  2625. package/ts3.8/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  2626. package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  2627. package/ts3.8/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  2628. package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  2629. package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  2630. package/ts3.8/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  2631. package/ts3.8/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  2632. package/ts3.8/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  2633. package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  2634. package/ts3.8/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  2635. package/ts3.8/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  2636. package/ts3.8/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  2637. package/ts3.8/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  2638. package/ts3.8/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  2639. package/ts3.8/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  2640. package/ts3.8/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  2641. package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  2642. package/ts3.8/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  2643. package/ts3.8/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  2644. package/ts3.8/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  2645. package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  2646. package/ts3.8/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  2647. package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  2648. package/ts3.8/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  2649. package/ts3.8/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  2650. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  2651. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  2652. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  2653. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  2654. package/ts3.8/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  2655. package/ts3.8/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  2656. package/ts3.8/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  2657. package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  2658. package/ts3.8/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  2659. package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  2660. package/ts3.8/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  2661. package/ts3.8/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  2662. package/ts3.8/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  2663. package/ts3.8/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  2664. package/ts3.8/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  2665. package/ts3.8/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  2666. package/ts3.8/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  2667. package/ts3.8/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
  2668. package/ts3.8/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  2669. package/ts3.8/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
  2670. package/ts3.8/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  2671. package/ts3.8/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  2672. package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  2673. package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  2674. package/ts3.8/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  2675. package/ts3.8/esm/Plugins/Absorbers/plugin.d.ts +0 -2
  2676. package/ts3.8/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  2677. package/ts3.8/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  2678. package/ts3.8/esm/Plugins/Emitters/Emitters.d.ts +0 -24
  2679. package/ts3.8/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
  2680. package/ts3.8/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  2681. package/ts3.8/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  2682. package/ts3.8/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
  2683. package/ts3.8/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  2684. package/ts3.8/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  2685. package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  2686. package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  2687. package/ts3.8/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  2688. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  2689. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  2690. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  2691. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  2692. package/ts3.8/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  2693. package/ts3.8/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
  2694. package/ts3.8/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  2695. package/ts3.8/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  2696. package/ts3.8/esm/Plugins/Emitters/plugin.d.ts +0 -3
  2697. package/ts3.8/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  2698. package/ts3.8/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  2699. package/ts3.8/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  2700. package/ts3.8/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  2701. package/ts3.8/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  2702. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  2703. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  2704. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  2705. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  2706. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  2707. package/ts3.8/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  2708. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  2709. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  2710. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  2711. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  2712. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  2713. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  2714. package/ts3.8/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  2715. package/ts3.8/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  2716. package/ts3.8/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
  2717. package/ts3.8/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
  2718. package/ts3.8/esm/Shapes/Circle/index.d.ts +0 -2
  2719. package/ts3.8/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
  2720. package/ts3.8/esm/Shapes/Image/Utils.d.ts +0 -25
  2721. package/ts3.8/esm/Shapes/Image/index.d.ts +0 -2
  2722. package/ts3.8/esm/Shapes/Line/LineDrawer.d.ts +0 -5
  2723. package/ts3.8/esm/Shapes/Line/index.d.ts +0 -2
  2724. package/ts3.8/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  2725. package/ts3.8/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  2726. package/ts3.8/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  2727. package/ts3.8/esm/Shapes/Polygon/index.d.ts +0 -4
  2728. package/ts3.8/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
  2729. package/ts3.8/esm/Shapes/Square/index.d.ts +0 -2
  2730. package/ts3.8/esm/Shapes/Star/StarDrawer.d.ts +0 -5
  2731. package/ts3.8/esm/Shapes/Star/index.d.ts +0 -2
  2732. package/ts3.8/esm/Shapes/Text/TextDrawer.d.ts +0 -8
  2733. package/ts3.8/esm/Shapes/Text/index.d.ts +0 -2
  2734. package/ts3.8/esm/Types/ParticlesGroups.d.ts +0 -4
  2735. package/ts3.8/esm/Types/PathOptions.d.ts +0 -3
  2736. package/ts3.8/esm/Types/RangeValue.d.ts +0 -2
  2737. package/ts3.8/esm/Types/RecursivePartial.d.ts +0 -3
  2738. package/ts3.8/esm/Types/ShapeData.d.ts +0 -5
  2739. package/ts3.8/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
  2740. package/ts3.8/esm/Types/SingleOrMultiple.d.ts +0 -1
  2741. package/ts3.8/esm/Types/index.d.ts +0 -6
  2742. package/ts3.8/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
  2743. package/ts3.8/esm/Updaters/Angle/index.d.ts +0 -2
  2744. package/ts3.8/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
  2745. package/ts3.8/esm/Updaters/Color/index.d.ts +0 -2
  2746. package/ts3.8/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
  2747. package/ts3.8/esm/Updaters/Life/index.d.ts +0 -2
  2748. package/ts3.8/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  2749. package/ts3.8/esm/Updaters/Opacity/index.d.ts +0 -2
  2750. package/ts3.8/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
  2751. package/ts3.8/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  2752. package/ts3.8/esm/Updaters/OutModes/Utils.d.ts +0 -3
  2753. package/ts3.8/esm/Updaters/OutModes/index.d.ts +0 -2
  2754. package/ts3.8/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
  2755. package/ts3.8/esm/Updaters/Roll/index.d.ts +0 -2
  2756. package/ts3.8/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
  2757. package/ts3.8/esm/Updaters/Size/index.d.ts +0 -2
  2758. package/ts3.8/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  2759. package/ts3.8/esm/Updaters/StrokeColor/index.d.ts +0 -2
  2760. package/ts3.8/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  2761. package/ts3.8/esm/Updaters/Tilt/index.d.ts +0 -2
  2762. package/ts3.8/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  2763. package/ts3.8/esm/Updaters/Wobble/index.d.ts +0 -2
  2764. package/ts3.8/esm/Utils/CanvasUtils.d.ts +0 -18
  2765. package/ts3.8/esm/Utils/Circle.d.ts +0 -8
  2766. package/ts3.8/esm/Utils/CircleWarp.d.ts +0 -10
  2767. package/ts3.8/esm/Utils/ColorUtils.d.ts +0 -26
  2768. package/ts3.8/esm/Utils/Constants.d.ts +0 -18
  2769. package/ts3.8/esm/Utils/EventListeners.d.ts +0 -30
  2770. package/ts3.8/esm/Utils/NumberUtils.d.ts +0 -23
  2771. package/ts3.8/esm/Utils/Plugins.d.ts +0 -22
  2772. package/ts3.8/esm/Utils/Point.d.ts +0 -7
  2773. package/ts3.8/esm/Utils/QuadTree.d.ts +0 -23
  2774. package/ts3.8/esm/Utils/Range.d.ts +0 -7
  2775. package/ts3.8/esm/Utils/Rectangle.d.ts +0 -9
  2776. package/ts3.8/esm/Utils/Utils.d.ts +0 -65
  2777. package/ts3.8/esm/Utils/index.d.ts +0 -13
  2778. package/ts3.8/esm/full.d.ts +0 -2
  2779. package/ts3.8/esm/index.d.ts +0 -31
  2780. package/ts3.8/esm/index.slim.d.ts +0 -25
  2781. package/ts3.8/esm/main.d.ts +0 -24
  2782. package/ts3.8/esm/pjs.d.ts +0 -14
  2783. package/ts3.8/esm/slim.d.ts +0 -2
  2784. package/ts3.8/full.d.ts +0 -2
  2785. package/ts3.8/index.d.ts +0 -31
  2786. package/ts3.8/index.slim.d.ts +0 -25
  2787. package/ts3.8/main.d.ts +0 -24
  2788. package/ts3.8/pjs.d.ts +0 -14
  2789. package/ts3.8/slim.d.ts +0 -2
  2790. package/ts4.0/Core/Canvas.d.ts +0 -36
  2791. package/ts4.0/Core/Container.d.ts +0 -64
  2792. package/ts4.0/Core/ExternalInteractorBase.d.ts +0 -12
  2793. package/ts4.0/Core/FrameManager.d.ts +0 -6
  2794. package/ts4.0/Core/InteractionManager.d.ts +0 -11
  2795. package/ts4.0/Core/Interfaces/Colors.d.ts +0 -33
  2796. package/ts4.0/Core/Interfaces/Gradients.d.ts +0 -21
  2797. package/ts4.0/Core/Interfaces/IAttract.d.ts +0 -7
  2798. package/ts4.0/Core/Interfaces/IBounds.d.ts +0 -6
  2799. package/ts4.0/Core/Interfaces/IBubble.d.ts +0 -4
  2800. package/ts4.0/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  2801. package/ts4.0/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  2802. package/ts4.0/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  2803. package/ts4.0/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  2804. package/ts4.0/Core/Interfaces/ICoordinates.d.ts +0 -7
  2805. package/ts4.0/Core/Interfaces/IDelta.d.ts +0 -4
  2806. package/ts4.0/Core/Interfaces/IDimension.d.ts +0 -4
  2807. package/ts4.0/Core/Interfaces/IDistance.d.ts +0 -4
  2808. package/ts4.0/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  2809. package/ts4.0/Core/Interfaces/IInteractor.d.ts +0 -6
  2810. package/ts4.0/Core/Interfaces/IMouseData.d.ts +0 -9
  2811. package/ts4.0/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  2812. package/ts4.0/Core/Interfaces/IParticle.d.ts +0 -59
  2813. package/ts4.0/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  2814. package/ts4.0/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  2815. package/ts4.0/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  2816. package/ts4.0/Core/Interfaces/IParticleLife.d.ts +0 -7
  2817. package/ts4.0/Core/Interfaces/IParticleLoops.d.ts +0 -4
  2818. package/ts4.0/Core/Interfaces/IParticleSpin.d.ts +0 -9
  2819. package/ts4.0/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  2820. package/ts4.0/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  2821. package/ts4.0/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  2822. package/ts4.0/Core/Interfaces/IPlugin.d.ts +0 -11
  2823. package/ts4.0/Core/Interfaces/IRangeValue.d.ts +0 -4
  2824. package/ts4.0/Core/Interfaces/IRectSideResult.d.ts +0 -5
  2825. package/ts4.0/Core/Interfaces/IRepulse.d.ts +0 -7
  2826. package/ts4.0/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  2827. package/ts4.0/Core/Interfaces/IShapeValues.d.ts +0 -8
  2828. package/ts4.0/Core/Interfaces/index.d.ts +0 -33
  2829. package/ts4.0/Core/Loader.d.ts +0 -14
  2830. package/ts4.0/Core/Particle/Mover.d.ts +0 -13
  2831. package/ts4.0/Core/Particle/Vector.d.ts +0 -29
  2832. package/ts4.0/Core/Particle/Vector3d.d.ts +0 -18
  2833. package/ts4.0/Core/Particle.d.ts +0 -84
  2834. package/ts4.0/Core/Particles.d.ts +0 -45
  2835. package/ts4.0/Core/ParticlesInteractorBase.d.ts +0 -12
  2836. package/ts4.0/Core/Retina.d.ts +0 -26
  2837. package/ts4.0/Enums/AnimationStatus.d.ts +0 -4
  2838. package/ts4.0/Enums/Directions/MoveDirection.d.ts +0 -12
  2839. package/ts4.0/Enums/Directions/OutModeDirection.d.ts +0 -6
  2840. package/ts4.0/Enums/Directions/RotateDirection.d.ts +0 -6
  2841. package/ts4.0/Enums/Directions/TiltDirection.d.ts +0 -6
  2842. package/ts4.0/Enums/Directions/index.d.ts +0 -4
  2843. package/ts4.0/Enums/InteractivityDetect.d.ts +0 -5
  2844. package/ts4.0/Enums/Modes/ClickMode.d.ts +0 -9
  2845. package/ts4.0/Enums/Modes/CollisionMode.d.ts +0 -5
  2846. package/ts4.0/Enums/Modes/DestroyMode.d.ts +0 -4
  2847. package/ts4.0/Enums/Modes/DivMode.d.ts +0 -5
  2848. package/ts4.0/Enums/Modes/HoverMode.d.ts +0 -11
  2849. package/ts4.0/Enums/Modes/OutMode.d.ts +0 -10
  2850. package/ts4.0/Enums/Modes/SizeMode.d.ts +0 -4
  2851. package/ts4.0/Enums/Modes/ThemeMode.d.ts +0 -5
  2852. package/ts4.0/Enums/Modes/index.d.ts +0 -8
  2853. package/ts4.0/Enums/Types/AlterType.d.ts +0 -4
  2854. package/ts4.0/Enums/Types/DestroyType.d.ts +0 -5
  2855. package/ts4.0/Enums/Types/DivType.d.ts +0 -4
  2856. package/ts4.0/Enums/Types/EasingType.d.ts +0 -10
  2857. package/ts4.0/Enums/Types/GradientType.d.ts +0 -5
  2858. package/ts4.0/Enums/Types/InteractorType.d.ts +0 -4
  2859. package/ts4.0/Enums/Types/OrbitType.d.ts +0 -4
  2860. package/ts4.0/Enums/Types/ShapeType.d.ts +0 -13
  2861. package/ts4.0/Enums/Types/StartValueType.d.ts +0 -5
  2862. package/ts4.0/Enums/Types/index.d.ts +0 -9
  2863. package/ts4.0/Enums/index.d.ts +0 -5
  2864. package/ts4.0/Interactions/External/Attract/Attractor.d.ts +0 -11
  2865. package/ts4.0/Interactions/External/Attract/index.d.ts +0 -2
  2866. package/ts4.0/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  2867. package/ts4.0/Interactions/External/Bounce/index.d.ts +0 -2
  2868. package/ts4.0/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  2869. package/ts4.0/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  2870. package/ts4.0/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  2871. package/ts4.0/Interactions/External/Bubble/index.d.ts +0 -2
  2872. package/ts4.0/Interactions/External/Connect/Connector.d.ts +0 -8
  2873. package/ts4.0/Interactions/External/Connect/index.d.ts +0 -2
  2874. package/ts4.0/Interactions/External/Grab/Grabber.d.ts +0 -8
  2875. package/ts4.0/Interactions/External/Grab/index.d.ts +0 -2
  2876. package/ts4.0/Interactions/External/Repulse/Repulser.d.ts +0 -12
  2877. package/ts4.0/Interactions/External/Repulse/index.d.ts +0 -2
  2878. package/ts4.0/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  2879. package/ts4.0/Interactions/External/Trail/index.d.ts +0 -2
  2880. package/ts4.0/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  2881. package/ts4.0/Interactions/Particles/Attract/index.d.ts +0 -2
  2882. package/ts4.0/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  2883. package/ts4.0/Interactions/Particles/Collisions/index.d.ts +0 -2
  2884. package/ts4.0/Interactions/Particles/Links/ILink.d.ts +0 -9
  2885. package/ts4.0/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  2886. package/ts4.0/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  2887. package/ts4.0/Interactions/Particles/Links/Linker.d.ts +0 -11
  2888. package/ts4.0/Interactions/Particles/Links/index.d.ts +0 -3
  2889. package/ts4.0/Interactions/Particles/Links/plugin.d.ts +0 -2
  2890. package/ts4.0/Options/Classes/AnimatableColor.d.ts +0 -11
  2891. package/ts4.0/Options/Classes/AnimatableGradient.d.ts +0 -53
  2892. package/ts4.0/Options/Classes/AnimationOptions.d.ts +0 -11
  2893. package/ts4.0/Options/Classes/Background/Background.d.ts +0 -14
  2894. package/ts4.0/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  2895. package/ts4.0/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  2896. package/ts4.0/Options/Classes/ColorAnimation.d.ts +0 -12
  2897. package/ts4.0/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  2898. package/ts4.0/Options/Classes/HslAnimation.d.ts +0 -11
  2899. package/ts4.0/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  2900. package/ts4.0/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  2901. package/ts4.0/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  2902. package/ts4.0/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  2903. package/ts4.0/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  2904. package/ts4.0/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  2905. package/ts4.0/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  2906. package/ts4.0/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  2907. package/ts4.0/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  2908. package/ts4.0/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  2909. package/ts4.0/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  2910. package/ts4.0/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  2911. package/ts4.0/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  2912. package/ts4.0/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  2913. package/ts4.0/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  2914. package/ts4.0/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  2915. package/ts4.0/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  2916. package/ts4.0/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  2917. package/ts4.0/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  2918. package/ts4.0/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  2919. package/ts4.0/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  2920. package/ts4.0/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  2921. package/ts4.0/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  2922. package/ts4.0/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  2923. package/ts4.0/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  2924. package/ts4.0/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  2925. package/ts4.0/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  2926. package/ts4.0/Options/Classes/ManualParticle.d.ts +0 -10
  2927. package/ts4.0/Options/Classes/Motion/Motion.d.ts +0 -10
  2928. package/ts4.0/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  2929. package/ts4.0/Options/Classes/Options.d.ts +0 -43
  2930. package/ts4.0/Options/Classes/OptionsColor.d.ts +0 -10
  2931. package/ts4.0/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  2932. package/ts4.0/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  2933. package/ts4.0/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  2934. package/ts4.0/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  2935. package/ts4.0/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  2936. package/ts4.0/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  2937. package/ts4.0/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  2938. package/ts4.0/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  2939. package/ts4.0/Options/Classes/Particles/Life/Life.d.ts +0 -12
  2940. package/ts4.0/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  2941. package/ts4.0/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  2942. package/ts4.0/Options/Classes/Particles/Links/Links.d.ts +0 -22
  2943. package/ts4.0/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  2944. package/ts4.0/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  2945. package/ts4.0/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  2946. package/ts4.0/Options/Classes/Particles/Move/Move.d.ts +0 -44
  2947. package/ts4.0/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  2948. package/ts4.0/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  2949. package/ts4.0/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  2950. package/ts4.0/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  2951. package/ts4.0/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  2952. package/ts4.0/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  2953. package/ts4.0/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  2954. package/ts4.0/Options/Classes/Particles/Number/Density.d.ts +0 -12
  2955. package/ts4.0/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  2956. package/ts4.0/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  2957. package/ts4.0/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  2958. package/ts4.0/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  2959. package/ts4.0/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  2960. package/ts4.0/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  2961. package/ts4.0/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  2962. package/ts4.0/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  2963. package/ts4.0/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  2964. package/ts4.0/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  2965. package/ts4.0/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  2966. package/ts4.0/Options/Classes/Particles/Shadow.d.ts +0 -13
  2967. package/ts4.0/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  2968. package/ts4.0/Options/Classes/Particles/Size/Size.d.ts +0 -12
  2969. package/ts4.0/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  2970. package/ts4.0/Options/Classes/Particles/Stroke.d.ts +0 -11
  2971. package/ts4.0/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  2972. package/ts4.0/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  2973. package/ts4.0/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  2974. package/ts4.0/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  2975. package/ts4.0/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  2976. package/ts4.0/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  2977. package/ts4.0/Options/Classes/Random.d.ts +0 -9
  2978. package/ts4.0/Options/Classes/Responsive.d.ts +0 -10
  2979. package/ts4.0/Options/Classes/Theme/Theme.d.ts +0 -12
  2980. package/ts4.0/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  2981. package/ts4.0/Options/Classes/ValueWithRandom.d.ts +0 -10
  2982. package/ts4.0/Options/Interfaces/Background/IBackground.d.ts +0 -9
  2983. package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  2984. package/ts4.0/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  2985. package/ts4.0/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  2986. package/ts4.0/Options/Interfaces/IAnimatable.d.ts +0 -4
  2987. package/ts4.0/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  2988. package/ts4.0/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  2989. package/ts4.0/Options/Interfaces/IAnimation.d.ts +0 -6
  2990. package/ts4.0/Options/Interfaces/IColorAnimation.d.ts +0 -5
  2991. package/ts4.0/Options/Interfaces/IHslAnimation.d.ts +0 -6
  2992. package/ts4.0/Options/Interfaces/IManualParticle.d.ts +0 -7
  2993. package/ts4.0/Options/Interfaces/IOptionLoader.d.ts +0 -4
  2994. package/ts4.0/Options/Interfaces/IOptions.d.ts +0 -33
  2995. package/ts4.0/Options/Interfaces/IOptionsColor.d.ts +0 -2
  2996. package/ts4.0/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  2997. package/ts4.0/Options/Interfaces/IRandom.d.ts +0 -4
  2998. package/ts4.0/Options/Interfaces/IResponsive.d.ts +0 -6
  2999. package/ts4.0/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  3000. package/ts4.0/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  3001. package/ts4.0/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  3002. package/ts4.0/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  3003. package/ts4.0/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  3004. package/ts4.0/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  3005. package/ts4.0/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  3006. package/ts4.0/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  3007. package/ts4.0/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  3008. package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  3009. package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  3010. package/ts4.0/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  3011. package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  3012. package/ts4.0/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  3013. package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  3014. package/ts4.0/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  3015. package/ts4.0/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  3016. package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  3017. package/ts4.0/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  3018. package/ts4.0/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  3019. package/ts4.0/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  3020. package/ts4.0/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  3021. package/ts4.0/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  3022. package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  3023. package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  3024. package/ts4.0/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  3025. package/ts4.0/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  3026. package/ts4.0/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  3027. package/ts4.0/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  3028. package/ts4.0/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  3029. package/ts4.0/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  3030. package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  3031. package/ts4.0/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  3032. package/ts4.0/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  3033. package/ts4.0/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  3034. package/ts4.0/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  3035. package/ts4.0/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  3036. package/ts4.0/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  3037. package/ts4.0/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  3038. package/ts4.0/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  3039. package/ts4.0/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  3040. package/ts4.0/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  3041. package/ts4.0/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  3042. package/ts4.0/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  3043. package/ts4.0/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  3044. package/ts4.0/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  3045. package/ts4.0/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  3046. package/ts4.0/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  3047. package/ts4.0/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  3048. package/ts4.0/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  3049. package/ts4.0/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  3050. package/ts4.0/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  3051. package/ts4.0/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  3052. package/ts4.0/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  3053. package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  3054. package/ts4.0/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  3055. package/ts4.0/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  3056. package/ts4.0/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  3057. package/ts4.0/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  3058. package/ts4.0/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  3059. package/ts4.0/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  3060. package/ts4.0/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  3061. package/ts4.0/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  3062. package/ts4.0/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  3063. package/ts4.0/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  3064. package/ts4.0/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  3065. package/ts4.0/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  3066. package/ts4.0/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  3067. package/ts4.0/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  3068. package/ts4.0/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  3069. package/ts4.0/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  3070. package/ts4.0/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  3071. package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  3072. package/ts4.0/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  3073. package/ts4.0/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  3074. package/ts4.0/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  3075. package/ts4.0/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  3076. package/ts4.0/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  3077. package/ts4.0/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  3078. package/ts4.0/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  3079. package/ts4.0/Plugins/Absorbers/Absorbers.d.ts +0 -25
  3080. package/ts4.0/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  3081. package/ts4.0/Plugins/Absorbers/Enums/index.d.ts +0 -1
  3082. package/ts4.0/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  3083. package/ts4.0/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  3084. package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  3085. package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  3086. package/ts4.0/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  3087. package/ts4.0/Plugins/Absorbers/plugin.d.ts +0 -2
  3088. package/ts4.0/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  3089. package/ts4.0/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  3090. package/ts4.0/Plugins/Emitters/Emitters.d.ts +0 -24
  3091. package/ts4.0/Plugins/Emitters/EmittersMain.d.ts +0 -5
  3092. package/ts4.0/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  3093. package/ts4.0/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  3094. package/ts4.0/Plugins/Emitters/Enums/index.d.ts +0 -2
  3095. package/ts4.0/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  3096. package/ts4.0/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  3097. package/ts4.0/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  3098. package/ts4.0/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  3099. package/ts4.0/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  3100. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  3101. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  3102. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  3103. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  3104. package/ts4.0/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  3105. package/ts4.0/Plugins/Emitters/ShapeManager.d.ts +0 -6
  3106. package/ts4.0/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  3107. package/ts4.0/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  3108. package/ts4.0/Plugins/Emitters/plugin.d.ts +0 -3
  3109. package/ts4.0/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  3110. package/ts4.0/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  3111. package/ts4.0/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  3112. package/ts4.0/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  3113. package/ts4.0/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  3114. package/ts4.0/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  3115. package/ts4.0/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  3116. package/ts4.0/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  3117. package/ts4.0/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  3118. package/ts4.0/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  3119. package/ts4.0/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  3120. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  3121. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  3122. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  3123. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  3124. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  3125. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  3126. package/ts4.0/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  3127. package/ts4.0/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  3128. package/ts4.0/Plugins/PolygonMask/plugin.d.ts +0 -2
  3129. package/ts4.0/Shapes/Circle/CircleDrawer.d.ts +0 -5
  3130. package/ts4.0/Shapes/Circle/index.d.ts +0 -2
  3131. package/ts4.0/Shapes/Image/ImageDrawer.d.ts +0 -22
  3132. package/ts4.0/Shapes/Image/Utils.d.ts +0 -25
  3133. package/ts4.0/Shapes/Image/index.d.ts +0 -2
  3134. package/ts4.0/Shapes/Line/LineDrawer.d.ts +0 -5
  3135. package/ts4.0/Shapes/Line/index.d.ts +0 -2
  3136. package/ts4.0/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  3137. package/ts4.0/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  3138. package/ts4.0/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  3139. package/ts4.0/Shapes/Polygon/index.d.ts +0 -4
  3140. package/ts4.0/Shapes/Square/SquareDrawer.d.ts +0 -5
  3141. package/ts4.0/Shapes/Square/index.d.ts +0 -2
  3142. package/ts4.0/Shapes/Star/StarDrawer.d.ts +0 -5
  3143. package/ts4.0/Shapes/Star/index.d.ts +0 -2
  3144. package/ts4.0/Shapes/Text/TextDrawer.d.ts +0 -8
  3145. package/ts4.0/Shapes/Text/index.d.ts +0 -2
  3146. package/ts4.0/Types/ParticlesGroups.d.ts +0 -4
  3147. package/ts4.0/Types/PathOptions.d.ts +0 -3
  3148. package/ts4.0/Types/RangeValue.d.ts +0 -2
  3149. package/ts4.0/Types/RecursivePartial.d.ts +0 -3
  3150. package/ts4.0/Types/ShapeData.d.ts +0 -5
  3151. package/ts4.0/Types/ShapeDrawerFunctions.d.ts +0 -11
  3152. package/ts4.0/Types/SingleOrMultiple.d.ts +0 -1
  3153. package/ts4.0/Types/index.d.ts +0 -6
  3154. package/ts4.0/Updaters/Angle/AngleUpdater.d.ts +0 -6
  3155. package/ts4.0/Updaters/Angle/index.d.ts +0 -2
  3156. package/ts4.0/Updaters/Color/ColorUpdater.d.ts +0 -6
  3157. package/ts4.0/Updaters/Color/index.d.ts +0 -2
  3158. package/ts4.0/Updaters/Life/LifeUpdater.d.ts +0 -9
  3159. package/ts4.0/Updaters/Life/index.d.ts +0 -2
  3160. package/ts4.0/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  3161. package/ts4.0/Updaters/Opacity/index.d.ts +0 -2
  3162. package/ts4.0/Updaters/OutModes/IBounceData.d.ts +0 -12
  3163. package/ts4.0/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  3164. package/ts4.0/Updaters/OutModes/Utils.d.ts +0 -3
  3165. package/ts4.0/Updaters/OutModes/index.d.ts +0 -2
  3166. package/ts4.0/Updaters/Roll/RollUpdater.d.ts +0 -6
  3167. package/ts4.0/Updaters/Roll/index.d.ts +0 -2
  3168. package/ts4.0/Updaters/Size/SizeUpdater.d.ts +0 -6
  3169. package/ts4.0/Updaters/Size/index.d.ts +0 -2
  3170. package/ts4.0/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  3171. package/ts4.0/Updaters/StrokeColor/index.d.ts +0 -2
  3172. package/ts4.0/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  3173. package/ts4.0/Updaters/Tilt/index.d.ts +0 -2
  3174. package/ts4.0/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  3175. package/ts4.0/Updaters/Wobble/index.d.ts +0 -2
  3176. package/ts4.0/Utils/CanvasUtils.d.ts +0 -18
  3177. package/ts4.0/Utils/Circle.d.ts +0 -8
  3178. package/ts4.0/Utils/CircleWarp.d.ts +0 -10
  3179. package/ts4.0/Utils/ColorUtils.d.ts +0 -26
  3180. package/ts4.0/Utils/Constants.d.ts +0 -18
  3181. package/ts4.0/Utils/EventListeners.d.ts +0 -30
  3182. package/ts4.0/Utils/NumberUtils.d.ts +0 -23
  3183. package/ts4.0/Utils/Plugins.d.ts +0 -22
  3184. package/ts4.0/Utils/Point.d.ts +0 -7
  3185. package/ts4.0/Utils/QuadTree.d.ts +0 -23
  3186. package/ts4.0/Utils/Range.d.ts +0 -7
  3187. package/ts4.0/Utils/Rectangle.d.ts +0 -9
  3188. package/ts4.0/Utils/Utils.d.ts +0 -65
  3189. package/ts4.0/Utils/index.d.ts +0 -13
  3190. package/ts4.0/browser/Core/Canvas.d.ts +0 -36
  3191. package/ts4.0/browser/Core/Container.d.ts +0 -64
  3192. package/ts4.0/browser/Core/ExternalInteractorBase.d.ts +0 -12
  3193. package/ts4.0/browser/Core/FrameManager.d.ts +0 -6
  3194. package/ts4.0/browser/Core/InteractionManager.d.ts +0 -11
  3195. package/ts4.0/browser/Core/Interfaces/Colors.d.ts +0 -33
  3196. package/ts4.0/browser/Core/Interfaces/Gradients.d.ts +0 -21
  3197. package/ts4.0/browser/Core/Interfaces/IAttract.d.ts +0 -7
  3198. package/ts4.0/browser/Core/Interfaces/IBounds.d.ts +0 -6
  3199. package/ts4.0/browser/Core/Interfaces/IBubble.d.ts +0 -4
  3200. package/ts4.0/browser/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  3201. package/ts4.0/browser/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  3202. package/ts4.0/browser/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  3203. package/ts4.0/browser/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  3204. package/ts4.0/browser/Core/Interfaces/ICoordinates.d.ts +0 -7
  3205. package/ts4.0/browser/Core/Interfaces/IDelta.d.ts +0 -4
  3206. package/ts4.0/browser/Core/Interfaces/IDimension.d.ts +0 -4
  3207. package/ts4.0/browser/Core/Interfaces/IDistance.d.ts +0 -4
  3208. package/ts4.0/browser/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  3209. package/ts4.0/browser/Core/Interfaces/IInteractor.d.ts +0 -6
  3210. package/ts4.0/browser/Core/Interfaces/IMouseData.d.ts +0 -9
  3211. package/ts4.0/browser/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  3212. package/ts4.0/browser/Core/Interfaces/IParticle.d.ts +0 -59
  3213. package/ts4.0/browser/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  3214. package/ts4.0/browser/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  3215. package/ts4.0/browser/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  3216. package/ts4.0/browser/Core/Interfaces/IParticleLife.d.ts +0 -7
  3217. package/ts4.0/browser/Core/Interfaces/IParticleLoops.d.ts +0 -4
  3218. package/ts4.0/browser/Core/Interfaces/IParticleSpin.d.ts +0 -9
  3219. package/ts4.0/browser/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  3220. package/ts4.0/browser/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  3221. package/ts4.0/browser/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  3222. package/ts4.0/browser/Core/Interfaces/IPlugin.d.ts +0 -11
  3223. package/ts4.0/browser/Core/Interfaces/IRangeValue.d.ts +0 -4
  3224. package/ts4.0/browser/Core/Interfaces/IRectSideResult.d.ts +0 -5
  3225. package/ts4.0/browser/Core/Interfaces/IRepulse.d.ts +0 -7
  3226. package/ts4.0/browser/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  3227. package/ts4.0/browser/Core/Interfaces/IShapeValues.d.ts +0 -8
  3228. package/ts4.0/browser/Core/Interfaces/index.d.ts +0 -33
  3229. package/ts4.0/browser/Core/Loader.d.ts +0 -14
  3230. package/ts4.0/browser/Core/Particle/Mover.d.ts +0 -13
  3231. package/ts4.0/browser/Core/Particle/Vector.d.ts +0 -29
  3232. package/ts4.0/browser/Core/Particle/Vector3d.d.ts +0 -18
  3233. package/ts4.0/browser/Core/Particle.d.ts +0 -84
  3234. package/ts4.0/browser/Core/Particles.d.ts +0 -45
  3235. package/ts4.0/browser/Core/ParticlesInteractorBase.d.ts +0 -12
  3236. package/ts4.0/browser/Core/Retina.d.ts +0 -26
  3237. package/ts4.0/browser/Enums/AnimationStatus.d.ts +0 -4
  3238. package/ts4.0/browser/Enums/Directions/MoveDirection.d.ts +0 -12
  3239. package/ts4.0/browser/Enums/Directions/OutModeDirection.d.ts +0 -6
  3240. package/ts4.0/browser/Enums/Directions/RotateDirection.d.ts +0 -6
  3241. package/ts4.0/browser/Enums/Directions/TiltDirection.d.ts +0 -6
  3242. package/ts4.0/browser/Enums/Directions/index.d.ts +0 -4
  3243. package/ts4.0/browser/Enums/InteractivityDetect.d.ts +0 -5
  3244. package/ts4.0/browser/Enums/Modes/ClickMode.d.ts +0 -9
  3245. package/ts4.0/browser/Enums/Modes/CollisionMode.d.ts +0 -5
  3246. package/ts4.0/browser/Enums/Modes/DestroyMode.d.ts +0 -4
  3247. package/ts4.0/browser/Enums/Modes/DivMode.d.ts +0 -5
  3248. package/ts4.0/browser/Enums/Modes/HoverMode.d.ts +0 -11
  3249. package/ts4.0/browser/Enums/Modes/OutMode.d.ts +0 -10
  3250. package/ts4.0/browser/Enums/Modes/SizeMode.d.ts +0 -4
  3251. package/ts4.0/browser/Enums/Modes/ThemeMode.d.ts +0 -5
  3252. package/ts4.0/browser/Enums/Modes/index.d.ts +0 -8
  3253. package/ts4.0/browser/Enums/Types/AlterType.d.ts +0 -4
  3254. package/ts4.0/browser/Enums/Types/DestroyType.d.ts +0 -5
  3255. package/ts4.0/browser/Enums/Types/DivType.d.ts +0 -4
  3256. package/ts4.0/browser/Enums/Types/EasingType.d.ts +0 -10
  3257. package/ts4.0/browser/Enums/Types/GradientType.d.ts +0 -5
  3258. package/ts4.0/browser/Enums/Types/InteractorType.d.ts +0 -4
  3259. package/ts4.0/browser/Enums/Types/OrbitType.d.ts +0 -4
  3260. package/ts4.0/browser/Enums/Types/ShapeType.d.ts +0 -13
  3261. package/ts4.0/browser/Enums/Types/StartValueType.d.ts +0 -5
  3262. package/ts4.0/browser/Enums/Types/index.d.ts +0 -9
  3263. package/ts4.0/browser/Enums/index.d.ts +0 -5
  3264. package/ts4.0/browser/Interactions/External/Attract/Attractor.d.ts +0 -11
  3265. package/ts4.0/browser/Interactions/External/Attract/index.d.ts +0 -2
  3266. package/ts4.0/browser/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  3267. package/ts4.0/browser/Interactions/External/Bounce/index.d.ts +0 -2
  3268. package/ts4.0/browser/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  3269. package/ts4.0/browser/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  3270. package/ts4.0/browser/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  3271. package/ts4.0/browser/Interactions/External/Bubble/index.d.ts +0 -2
  3272. package/ts4.0/browser/Interactions/External/Connect/Connector.d.ts +0 -8
  3273. package/ts4.0/browser/Interactions/External/Connect/index.d.ts +0 -2
  3274. package/ts4.0/browser/Interactions/External/Grab/Grabber.d.ts +0 -8
  3275. package/ts4.0/browser/Interactions/External/Grab/index.d.ts +0 -2
  3276. package/ts4.0/browser/Interactions/External/Repulse/Repulser.d.ts +0 -12
  3277. package/ts4.0/browser/Interactions/External/Repulse/index.d.ts +0 -2
  3278. package/ts4.0/browser/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  3279. package/ts4.0/browser/Interactions/External/Trail/index.d.ts +0 -2
  3280. package/ts4.0/browser/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  3281. package/ts4.0/browser/Interactions/Particles/Attract/index.d.ts +0 -2
  3282. package/ts4.0/browser/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  3283. package/ts4.0/browser/Interactions/Particles/Collisions/index.d.ts +0 -2
  3284. package/ts4.0/browser/Interactions/Particles/Links/ILink.d.ts +0 -9
  3285. package/ts4.0/browser/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  3286. package/ts4.0/browser/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  3287. package/ts4.0/browser/Interactions/Particles/Links/Linker.d.ts +0 -11
  3288. package/ts4.0/browser/Interactions/Particles/Links/index.d.ts +0 -3
  3289. package/ts4.0/browser/Interactions/Particles/Links/plugin.d.ts +0 -2
  3290. package/ts4.0/browser/Options/Classes/AnimatableColor.d.ts +0 -11
  3291. package/ts4.0/browser/Options/Classes/AnimatableGradient.d.ts +0 -53
  3292. package/ts4.0/browser/Options/Classes/AnimationOptions.d.ts +0 -11
  3293. package/ts4.0/browser/Options/Classes/Background/Background.d.ts +0 -14
  3294. package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  3295. package/ts4.0/browser/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  3296. package/ts4.0/browser/Options/Classes/ColorAnimation.d.ts +0 -12
  3297. package/ts4.0/browser/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  3298. package/ts4.0/browser/Options/Classes/HslAnimation.d.ts +0 -11
  3299. package/ts4.0/browser/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  3300. package/ts4.0/browser/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  3301. package/ts4.0/browser/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  3302. package/ts4.0/browser/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  3303. package/ts4.0/browser/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  3304. package/ts4.0/browser/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  3305. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  3306. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  3307. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  3308. package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  3309. package/ts4.0/browser/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  3310. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  3311. package/ts4.0/browser/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  3312. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  3313. package/ts4.0/browser/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  3314. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  3315. package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  3316. package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  3317. package/ts4.0/browser/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  3318. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  3319. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  3320. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  3321. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  3322. package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  3323. package/ts4.0/browser/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  3324. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  3325. package/ts4.0/browser/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  3326. package/ts4.0/browser/Options/Classes/ManualParticle.d.ts +0 -10
  3327. package/ts4.0/browser/Options/Classes/Motion/Motion.d.ts +0 -10
  3328. package/ts4.0/browser/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  3329. package/ts4.0/browser/Options/Classes/Options.d.ts +0 -43
  3330. package/ts4.0/browser/Options/Classes/OptionsColor.d.ts +0 -10
  3331. package/ts4.0/browser/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  3332. package/ts4.0/browser/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  3333. package/ts4.0/browser/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  3334. package/ts4.0/browser/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  3335. package/ts4.0/browser/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  3336. package/ts4.0/browser/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  3337. package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  3338. package/ts4.0/browser/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  3339. package/ts4.0/browser/Options/Classes/Particles/Life/Life.d.ts +0 -12
  3340. package/ts4.0/browser/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  3341. package/ts4.0/browser/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  3342. package/ts4.0/browser/Options/Classes/Particles/Links/Links.d.ts +0 -22
  3343. package/ts4.0/browser/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  3344. package/ts4.0/browser/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  3345. package/ts4.0/browser/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  3346. package/ts4.0/browser/Options/Classes/Particles/Move/Move.d.ts +0 -44
  3347. package/ts4.0/browser/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  3348. package/ts4.0/browser/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  3349. package/ts4.0/browser/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  3350. package/ts4.0/browser/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  3351. package/ts4.0/browser/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  3352. package/ts4.0/browser/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  3353. package/ts4.0/browser/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  3354. package/ts4.0/browser/Options/Classes/Particles/Number/Density.d.ts +0 -12
  3355. package/ts4.0/browser/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  3356. package/ts4.0/browser/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  3357. package/ts4.0/browser/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  3358. package/ts4.0/browser/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  3359. package/ts4.0/browser/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  3360. package/ts4.0/browser/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  3361. package/ts4.0/browser/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  3362. package/ts4.0/browser/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  3363. package/ts4.0/browser/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  3364. package/ts4.0/browser/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  3365. package/ts4.0/browser/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  3366. package/ts4.0/browser/Options/Classes/Particles/Shadow.d.ts +0 -13
  3367. package/ts4.0/browser/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  3368. package/ts4.0/browser/Options/Classes/Particles/Size/Size.d.ts +0 -12
  3369. package/ts4.0/browser/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  3370. package/ts4.0/browser/Options/Classes/Particles/Stroke.d.ts +0 -11
  3371. package/ts4.0/browser/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  3372. package/ts4.0/browser/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  3373. package/ts4.0/browser/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  3374. package/ts4.0/browser/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  3375. package/ts4.0/browser/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  3376. package/ts4.0/browser/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  3377. package/ts4.0/browser/Options/Classes/Random.d.ts +0 -9
  3378. package/ts4.0/browser/Options/Classes/Responsive.d.ts +0 -10
  3379. package/ts4.0/browser/Options/Classes/Theme/Theme.d.ts +0 -12
  3380. package/ts4.0/browser/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  3381. package/ts4.0/browser/Options/Classes/ValueWithRandom.d.ts +0 -10
  3382. package/ts4.0/browser/Options/Interfaces/Background/IBackground.d.ts +0 -9
  3383. package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  3384. package/ts4.0/browser/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  3385. package/ts4.0/browser/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  3386. package/ts4.0/browser/Options/Interfaces/IAnimatable.d.ts +0 -4
  3387. package/ts4.0/browser/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  3388. package/ts4.0/browser/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  3389. package/ts4.0/browser/Options/Interfaces/IAnimation.d.ts +0 -6
  3390. package/ts4.0/browser/Options/Interfaces/IColorAnimation.d.ts +0 -5
  3391. package/ts4.0/browser/Options/Interfaces/IHslAnimation.d.ts +0 -6
  3392. package/ts4.0/browser/Options/Interfaces/IManualParticle.d.ts +0 -7
  3393. package/ts4.0/browser/Options/Interfaces/IOptionLoader.d.ts +0 -4
  3394. package/ts4.0/browser/Options/Interfaces/IOptions.d.ts +0 -33
  3395. package/ts4.0/browser/Options/Interfaces/IOptionsColor.d.ts +0 -2
  3396. package/ts4.0/browser/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  3397. package/ts4.0/browser/Options/Interfaces/IRandom.d.ts +0 -4
  3398. package/ts4.0/browser/Options/Interfaces/IResponsive.d.ts +0 -6
  3399. package/ts4.0/browser/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  3400. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  3401. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  3402. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  3403. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  3404. package/ts4.0/browser/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  3405. package/ts4.0/browser/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  3406. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  3407. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  3408. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  3409. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  3410. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  3411. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  3412. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  3413. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  3414. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  3415. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  3416. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  3417. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  3418. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  3419. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  3420. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  3421. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  3422. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  3423. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  3424. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  3425. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  3426. package/ts4.0/browser/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  3427. package/ts4.0/browser/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  3428. package/ts4.0/browser/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  3429. package/ts4.0/browser/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  3430. package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  3431. package/ts4.0/browser/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  3432. package/ts4.0/browser/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  3433. package/ts4.0/browser/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  3434. package/ts4.0/browser/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  3435. package/ts4.0/browser/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  3436. package/ts4.0/browser/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  3437. package/ts4.0/browser/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  3438. package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  3439. package/ts4.0/browser/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  3440. package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  3441. package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  3442. package/ts4.0/browser/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  3443. package/ts4.0/browser/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  3444. package/ts4.0/browser/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  3445. package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  3446. package/ts4.0/browser/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  3447. package/ts4.0/browser/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  3448. package/ts4.0/browser/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  3449. package/ts4.0/browser/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  3450. package/ts4.0/browser/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  3451. package/ts4.0/browser/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  3452. package/ts4.0/browser/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  3453. package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  3454. package/ts4.0/browser/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  3455. package/ts4.0/browser/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  3456. package/ts4.0/browser/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  3457. package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  3458. package/ts4.0/browser/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  3459. package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  3460. package/ts4.0/browser/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  3461. package/ts4.0/browser/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  3462. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  3463. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  3464. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  3465. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  3466. package/ts4.0/browser/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  3467. package/ts4.0/browser/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  3468. package/ts4.0/browser/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  3469. package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  3470. package/ts4.0/browser/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  3471. package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  3472. package/ts4.0/browser/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  3473. package/ts4.0/browser/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  3474. package/ts4.0/browser/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  3475. package/ts4.0/browser/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  3476. package/ts4.0/browser/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  3477. package/ts4.0/browser/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  3478. package/ts4.0/browser/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  3479. package/ts4.0/browser/Plugins/Absorbers/Absorbers.d.ts +0 -25
  3480. package/ts4.0/browser/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  3481. package/ts4.0/browser/Plugins/Absorbers/Enums/index.d.ts +0 -1
  3482. package/ts4.0/browser/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  3483. package/ts4.0/browser/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  3484. package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  3485. package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  3486. package/ts4.0/browser/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  3487. package/ts4.0/browser/Plugins/Absorbers/plugin.d.ts +0 -2
  3488. package/ts4.0/browser/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  3489. package/ts4.0/browser/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  3490. package/ts4.0/browser/Plugins/Emitters/Emitters.d.ts +0 -24
  3491. package/ts4.0/browser/Plugins/Emitters/EmittersMain.d.ts +0 -5
  3492. package/ts4.0/browser/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  3493. package/ts4.0/browser/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  3494. package/ts4.0/browser/Plugins/Emitters/Enums/index.d.ts +0 -2
  3495. package/ts4.0/browser/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  3496. package/ts4.0/browser/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  3497. package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  3498. package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  3499. package/ts4.0/browser/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  3500. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  3501. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  3502. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  3503. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  3504. package/ts4.0/browser/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  3505. package/ts4.0/browser/Plugins/Emitters/ShapeManager.d.ts +0 -6
  3506. package/ts4.0/browser/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  3507. package/ts4.0/browser/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  3508. package/ts4.0/browser/Plugins/Emitters/plugin.d.ts +0 -3
  3509. package/ts4.0/browser/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  3510. package/ts4.0/browser/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  3511. package/ts4.0/browser/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  3512. package/ts4.0/browser/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  3513. package/ts4.0/browser/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  3514. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  3515. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  3516. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  3517. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  3518. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  3519. package/ts4.0/browser/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  3520. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  3521. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  3522. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  3523. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  3524. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  3525. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  3526. package/ts4.0/browser/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  3527. package/ts4.0/browser/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  3528. package/ts4.0/browser/Plugins/PolygonMask/plugin.d.ts +0 -2
  3529. package/ts4.0/browser/Shapes/Circle/CircleDrawer.d.ts +0 -5
  3530. package/ts4.0/browser/Shapes/Circle/index.d.ts +0 -2
  3531. package/ts4.0/browser/Shapes/Image/ImageDrawer.d.ts +0 -22
  3532. package/ts4.0/browser/Shapes/Image/Utils.d.ts +0 -25
  3533. package/ts4.0/browser/Shapes/Image/index.d.ts +0 -2
  3534. package/ts4.0/browser/Shapes/Line/LineDrawer.d.ts +0 -5
  3535. package/ts4.0/browser/Shapes/Line/index.d.ts +0 -2
  3536. package/ts4.0/browser/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  3537. package/ts4.0/browser/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  3538. package/ts4.0/browser/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  3539. package/ts4.0/browser/Shapes/Polygon/index.d.ts +0 -4
  3540. package/ts4.0/browser/Shapes/Square/SquareDrawer.d.ts +0 -5
  3541. package/ts4.0/browser/Shapes/Square/index.d.ts +0 -2
  3542. package/ts4.0/browser/Shapes/Star/StarDrawer.d.ts +0 -5
  3543. package/ts4.0/browser/Shapes/Star/index.d.ts +0 -2
  3544. package/ts4.0/browser/Shapes/Text/TextDrawer.d.ts +0 -8
  3545. package/ts4.0/browser/Shapes/Text/index.d.ts +0 -2
  3546. package/ts4.0/browser/Types/ParticlesGroups.d.ts +0 -4
  3547. package/ts4.0/browser/Types/PathOptions.d.ts +0 -3
  3548. package/ts4.0/browser/Types/RangeValue.d.ts +0 -2
  3549. package/ts4.0/browser/Types/RecursivePartial.d.ts +0 -3
  3550. package/ts4.0/browser/Types/ShapeData.d.ts +0 -5
  3551. package/ts4.0/browser/Types/ShapeDrawerFunctions.d.ts +0 -11
  3552. package/ts4.0/browser/Types/SingleOrMultiple.d.ts +0 -1
  3553. package/ts4.0/browser/Types/index.d.ts +0 -6
  3554. package/ts4.0/browser/Updaters/Angle/AngleUpdater.d.ts +0 -6
  3555. package/ts4.0/browser/Updaters/Angle/index.d.ts +0 -2
  3556. package/ts4.0/browser/Updaters/Color/ColorUpdater.d.ts +0 -6
  3557. package/ts4.0/browser/Updaters/Color/index.d.ts +0 -2
  3558. package/ts4.0/browser/Updaters/Life/LifeUpdater.d.ts +0 -9
  3559. package/ts4.0/browser/Updaters/Life/index.d.ts +0 -2
  3560. package/ts4.0/browser/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  3561. package/ts4.0/browser/Updaters/Opacity/index.d.ts +0 -2
  3562. package/ts4.0/browser/Updaters/OutModes/IBounceData.d.ts +0 -12
  3563. package/ts4.0/browser/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  3564. package/ts4.0/browser/Updaters/OutModes/Utils.d.ts +0 -3
  3565. package/ts4.0/browser/Updaters/OutModes/index.d.ts +0 -2
  3566. package/ts4.0/browser/Updaters/Roll/RollUpdater.d.ts +0 -6
  3567. package/ts4.0/browser/Updaters/Roll/index.d.ts +0 -2
  3568. package/ts4.0/browser/Updaters/Size/SizeUpdater.d.ts +0 -6
  3569. package/ts4.0/browser/Updaters/Size/index.d.ts +0 -2
  3570. package/ts4.0/browser/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  3571. package/ts4.0/browser/Updaters/StrokeColor/index.d.ts +0 -2
  3572. package/ts4.0/browser/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  3573. package/ts4.0/browser/Updaters/Tilt/index.d.ts +0 -2
  3574. package/ts4.0/browser/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  3575. package/ts4.0/browser/Updaters/Wobble/index.d.ts +0 -2
  3576. package/ts4.0/browser/Utils/CanvasUtils.d.ts +0 -18
  3577. package/ts4.0/browser/Utils/Circle.d.ts +0 -8
  3578. package/ts4.0/browser/Utils/CircleWarp.d.ts +0 -10
  3579. package/ts4.0/browser/Utils/ColorUtils.d.ts +0 -26
  3580. package/ts4.0/browser/Utils/Constants.d.ts +0 -18
  3581. package/ts4.0/browser/Utils/EventListeners.d.ts +0 -30
  3582. package/ts4.0/browser/Utils/NumberUtils.d.ts +0 -23
  3583. package/ts4.0/browser/Utils/Plugins.d.ts +0 -22
  3584. package/ts4.0/browser/Utils/Point.d.ts +0 -7
  3585. package/ts4.0/browser/Utils/QuadTree.d.ts +0 -23
  3586. package/ts4.0/browser/Utils/Range.d.ts +0 -7
  3587. package/ts4.0/browser/Utils/Rectangle.d.ts +0 -9
  3588. package/ts4.0/browser/Utils/Utils.d.ts +0 -65
  3589. package/ts4.0/browser/Utils/index.d.ts +0 -13
  3590. package/ts4.0/browser/full.d.ts +0 -2
  3591. package/ts4.0/browser/index.d.ts +0 -31
  3592. package/ts4.0/browser/index.slim.d.ts +0 -25
  3593. package/ts4.0/browser/main.d.ts +0 -24
  3594. package/ts4.0/browser/pjs.d.ts +0 -14
  3595. package/ts4.0/browser/slim.d.ts +0 -2
  3596. package/ts4.0/esm/Core/Canvas.d.ts +0 -36
  3597. package/ts4.0/esm/Core/Container.d.ts +0 -64
  3598. package/ts4.0/esm/Core/ExternalInteractorBase.d.ts +0 -12
  3599. package/ts4.0/esm/Core/FrameManager.d.ts +0 -6
  3600. package/ts4.0/esm/Core/InteractionManager.d.ts +0 -11
  3601. package/ts4.0/esm/Core/Interfaces/Colors.d.ts +0 -33
  3602. package/ts4.0/esm/Core/Interfaces/Gradients.d.ts +0 -21
  3603. package/ts4.0/esm/Core/Interfaces/IAttract.d.ts +0 -7
  3604. package/ts4.0/esm/Core/Interfaces/IBounds.d.ts +0 -6
  3605. package/ts4.0/esm/Core/Interfaces/IBubble.d.ts +0 -4
  3606. package/ts4.0/esm/Core/Interfaces/IBubbleParticleData.d.ts +0 -9
  3607. package/ts4.0/esm/Core/Interfaces/ICircleBouncer.d.ts +0 -9
  3608. package/ts4.0/esm/Core/Interfaces/IContainerInteractivity.d.ts +0 -6
  3609. package/ts4.0/esm/Core/Interfaces/IContainerPlugin.d.ts +0 -32
  3610. package/ts4.0/esm/Core/Interfaces/ICoordinates.d.ts +0 -7
  3611. package/ts4.0/esm/Core/Interfaces/IDelta.d.ts +0 -4
  3612. package/ts4.0/esm/Core/Interfaces/IDimension.d.ts +0 -4
  3613. package/ts4.0/esm/Core/Interfaces/IDistance.d.ts +0 -4
  3614. package/ts4.0/esm/Core/Interfaces/IExternalInteractor.d.ts +0 -6
  3615. package/ts4.0/esm/Core/Interfaces/IInteractor.d.ts +0 -6
  3616. package/ts4.0/esm/Core/Interfaces/IMouseData.d.ts +0 -9
  3617. package/ts4.0/esm/Core/Interfaces/IMovePathGenerator.d.ts +0 -8
  3618. package/ts4.0/esm/Core/Interfaces/IParticle.d.ts +0 -59
  3619. package/ts4.0/esm/Core/Interfaces/IParticleGradientAnimation.d.ts +0 -8
  3620. package/ts4.0/esm/Core/Interfaces/IParticleGradientColorAnimation.d.ts +0 -7
  3621. package/ts4.0/esm/Core/Interfaces/IParticleHslAnimation.d.ts +0 -6
  3622. package/ts4.0/esm/Core/Interfaces/IParticleLife.d.ts +0 -7
  3623. package/ts4.0/esm/Core/Interfaces/IParticleLoops.d.ts +0 -4
  3624. package/ts4.0/esm/Core/Interfaces/IParticleSpin.d.ts +0 -9
  3625. package/ts4.0/esm/Core/Interfaces/IParticleUpdater.d.ts +0 -6
  3626. package/ts4.0/esm/Core/Interfaces/IParticleValueAnimation.d.ts +0 -17
  3627. package/ts4.0/esm/Core/Interfaces/IParticlesInteractor.d.ts +0 -7
  3628. package/ts4.0/esm/Core/Interfaces/IPlugin.d.ts +0 -11
  3629. package/ts4.0/esm/Core/Interfaces/IRangeValue.d.ts +0 -4
  3630. package/ts4.0/esm/Core/Interfaces/IRectSideResult.d.ts +0 -5
  3631. package/ts4.0/esm/Core/Interfaces/IRepulse.d.ts +0 -7
  3632. package/ts4.0/esm/Core/Interfaces/IShapeDrawer.d.ts +0 -10
  3633. package/ts4.0/esm/Core/Interfaces/IShapeValues.d.ts +0 -8
  3634. package/ts4.0/esm/Core/Interfaces/index.d.ts +0 -33
  3635. package/ts4.0/esm/Core/Loader.d.ts +0 -14
  3636. package/ts4.0/esm/Core/Particle/Mover.d.ts +0 -13
  3637. package/ts4.0/esm/Core/Particle/Vector.d.ts +0 -29
  3638. package/ts4.0/esm/Core/Particle/Vector3d.d.ts +0 -18
  3639. package/ts4.0/esm/Core/Particle.d.ts +0 -84
  3640. package/ts4.0/esm/Core/Particles.d.ts +0 -45
  3641. package/ts4.0/esm/Core/ParticlesInteractorBase.d.ts +0 -12
  3642. package/ts4.0/esm/Core/Retina.d.ts +0 -26
  3643. package/ts4.0/esm/Enums/AnimationStatus.d.ts +0 -4
  3644. package/ts4.0/esm/Enums/Directions/MoveDirection.d.ts +0 -12
  3645. package/ts4.0/esm/Enums/Directions/OutModeDirection.d.ts +0 -6
  3646. package/ts4.0/esm/Enums/Directions/RotateDirection.d.ts +0 -6
  3647. package/ts4.0/esm/Enums/Directions/TiltDirection.d.ts +0 -6
  3648. package/ts4.0/esm/Enums/Directions/index.d.ts +0 -4
  3649. package/ts4.0/esm/Enums/InteractivityDetect.d.ts +0 -5
  3650. package/ts4.0/esm/Enums/Modes/ClickMode.d.ts +0 -9
  3651. package/ts4.0/esm/Enums/Modes/CollisionMode.d.ts +0 -5
  3652. package/ts4.0/esm/Enums/Modes/DestroyMode.d.ts +0 -4
  3653. package/ts4.0/esm/Enums/Modes/DivMode.d.ts +0 -5
  3654. package/ts4.0/esm/Enums/Modes/HoverMode.d.ts +0 -11
  3655. package/ts4.0/esm/Enums/Modes/OutMode.d.ts +0 -10
  3656. package/ts4.0/esm/Enums/Modes/SizeMode.d.ts +0 -4
  3657. package/ts4.0/esm/Enums/Modes/ThemeMode.d.ts +0 -5
  3658. package/ts4.0/esm/Enums/Modes/index.d.ts +0 -8
  3659. package/ts4.0/esm/Enums/Types/AlterType.d.ts +0 -4
  3660. package/ts4.0/esm/Enums/Types/DestroyType.d.ts +0 -5
  3661. package/ts4.0/esm/Enums/Types/DivType.d.ts +0 -4
  3662. package/ts4.0/esm/Enums/Types/EasingType.d.ts +0 -10
  3663. package/ts4.0/esm/Enums/Types/GradientType.d.ts +0 -5
  3664. package/ts4.0/esm/Enums/Types/InteractorType.d.ts +0 -4
  3665. package/ts4.0/esm/Enums/Types/OrbitType.d.ts +0 -4
  3666. package/ts4.0/esm/Enums/Types/ShapeType.d.ts +0 -13
  3667. package/ts4.0/esm/Enums/Types/StartValueType.d.ts +0 -5
  3668. package/ts4.0/esm/Enums/Types/index.d.ts +0 -9
  3669. package/ts4.0/esm/Enums/index.d.ts +0 -5
  3670. package/ts4.0/esm/Interactions/External/Attract/Attractor.d.ts +0 -11
  3671. package/ts4.0/esm/Interactions/External/Attract/index.d.ts +0 -2
  3672. package/ts4.0/esm/Interactions/External/Bounce/Bouncer.d.ts +0 -11
  3673. package/ts4.0/esm/Interactions/External/Bounce/index.d.ts +0 -2
  3674. package/ts4.0/esm/Interactions/External/Bubble/Bubbler.d.ts +0 -16
  3675. package/ts4.0/esm/Interactions/External/Bubble/IBubblerProcessParam.d.ts +0 -10
  3676. package/ts4.0/esm/Interactions/External/Bubble/ProcessBubbleType.d.ts +0 -5
  3677. package/ts4.0/esm/Interactions/External/Bubble/index.d.ts +0 -2
  3678. package/ts4.0/esm/Interactions/External/Connect/Connector.d.ts +0 -8
  3679. package/ts4.0/esm/Interactions/External/Connect/index.d.ts +0 -2
  3680. package/ts4.0/esm/Interactions/External/Grab/Grabber.d.ts +0 -8
  3681. package/ts4.0/esm/Interactions/External/Grab/index.d.ts +0 -2
  3682. package/ts4.0/esm/Interactions/External/Repulse/Repulser.d.ts +0 -12
  3683. package/ts4.0/esm/Interactions/External/Repulse/index.d.ts +0 -2
  3684. package/ts4.0/esm/Interactions/External/Trail/TrailMaker.d.ts +0 -11
  3685. package/ts4.0/esm/Interactions/External/Trail/index.d.ts +0 -2
  3686. package/ts4.0/esm/Interactions/Particles/Attract/Attractor.d.ts +0 -10
  3687. package/ts4.0/esm/Interactions/Particles/Attract/index.d.ts +0 -2
  3688. package/ts4.0/esm/Interactions/Particles/Collisions/Collider.d.ts +0 -11
  3689. package/ts4.0/esm/Interactions/Particles/Collisions/index.d.ts +0 -2
  3690. package/ts4.0/esm/Interactions/Particles/Links/ILink.d.ts +0 -9
  3691. package/ts4.0/esm/Interactions/Particles/Links/LinkInstance.d.ts +0 -12
  3692. package/ts4.0/esm/Interactions/Particles/Links/LinkParticle.d.ts +0 -5
  3693. package/ts4.0/esm/Interactions/Particles/Links/Linker.d.ts +0 -11
  3694. package/ts4.0/esm/Interactions/Particles/Links/index.d.ts +0 -3
  3695. package/ts4.0/esm/Interactions/Particles/Links/plugin.d.ts +0 -2
  3696. package/ts4.0/esm/Options/Classes/AnimatableColor.d.ts +0 -11
  3697. package/ts4.0/esm/Options/Classes/AnimatableGradient.d.ts +0 -53
  3698. package/ts4.0/esm/Options/Classes/AnimationOptions.d.ts +0 -11
  3699. package/ts4.0/esm/Options/Classes/Background/Background.d.ts +0 -14
  3700. package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMask.d.ts +0 -11
  3701. package/ts4.0/esm/Options/Classes/BackgroundMask/BackgroundMaskCover.d.ts +0 -10
  3702. package/ts4.0/esm/Options/Classes/ColorAnimation.d.ts +0 -12
  3703. package/ts4.0/esm/Options/Classes/FullScreen/FullScreen.d.ts +0 -9
  3704. package/ts4.0/esm/Options/Classes/HslAnimation.d.ts +0 -11
  3705. package/ts4.0/esm/Options/Classes/Interactivity/Events/ClickEvent.d.ts +0 -10
  3706. package/ts4.0/esm/Options/Classes/Interactivity/Events/DivEvent.d.ts +0 -18
  3707. package/ts4.0/esm/Options/Classes/Interactivity/Events/Events.d.ts +0 -20
  3708. package/ts4.0/esm/Options/Classes/Interactivity/Events/HoverEvent.d.ts +0 -12
  3709. package/ts4.0/esm/Options/Classes/Interactivity/Events/Parallax.d.ts +0 -10
  3710. package/ts4.0/esm/Options/Classes/Interactivity/Interactivity.d.ts +0 -15
  3711. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Attract.d.ts +0 -14
  3712. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bounce.d.ts +0 -8
  3713. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Bubble.d.ts +0 -9
  3714. package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleBase.d.ts +0 -13
  3715. package/ts4.0/esm/Options/Classes/Interactivity/Modes/BubbleDiv.d.ts +0 -11
  3716. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Connect.d.ts +0 -15
  3717. package/ts4.0/esm/Options/Classes/Interactivity/Modes/ConnectLinks.d.ts +0 -8
  3718. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Grab.d.ts +0 -14
  3719. package/ts4.0/esm/Options/Classes/Interactivity/Modes/GrabLinks.d.ts +0 -12
  3720. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Light.d.ts +0 -11
  3721. package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightArea.d.ts +0 -10
  3722. package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightGradient.d.ts +0 -10
  3723. package/ts4.0/esm/Options/Classes/Interactivity/Modes/LightShadow.d.ts +0 -10
  3724. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Modes.d.ts +0 -29
  3725. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Push.d.ts +0 -12
  3726. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Remove.d.ts +0 -10
  3727. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Repulse.d.ts +0 -9
  3728. package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseBase.d.ts +0 -14
  3729. package/ts4.0/esm/Options/Classes/Interactivity/Modes/RepulseDiv.d.ts +0 -11
  3730. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Slow.d.ts +0 -11
  3731. package/ts4.0/esm/Options/Classes/Interactivity/Modes/Trail.d.ts +0 -12
  3732. package/ts4.0/esm/Options/Classes/ManualParticle.d.ts +0 -10
  3733. package/ts4.0/esm/Options/Classes/Motion/Motion.d.ts +0 -10
  3734. package/ts4.0/esm/Options/Classes/Motion/MotionReduce.d.ts +0 -9
  3735. package/ts4.0/esm/Options/Classes/Options.d.ts +0 -43
  3736. package/ts4.0/esm/Options/Classes/OptionsColor.d.ts +0 -10
  3737. package/ts4.0/esm/Options/Classes/Particles/Bounce/Bounce.d.ts +0 -10
  3738. package/ts4.0/esm/Options/Classes/Particles/Bounce/BounceFactor.d.ts +0 -4
  3739. package/ts4.0/esm/Options/Classes/Particles/Collisions/Collisions.d.ts +0 -14
  3740. package/ts4.0/esm/Options/Classes/Particles/Collisions/CollisionsOverlap.d.ts +0 -9
  3741. package/ts4.0/esm/Options/Classes/Particles/Destroy/Destroy.d.ts +0 -11
  3742. package/ts4.0/esm/Options/Classes/Particles/Destroy/Split.d.ts +0 -15
  3743. package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitFactor.d.ts +0 -4
  3744. package/ts4.0/esm/Options/Classes/Particles/Destroy/SplitRate.d.ts +0 -4
  3745. package/ts4.0/esm/Options/Classes/Particles/Life/Life.d.ts +0 -12
  3746. package/ts4.0/esm/Options/Classes/Particles/Life/LifeDelay.d.ts +0 -9
  3747. package/ts4.0/esm/Options/Classes/Particles/Life/LifeDuration.d.ts +0 -9
  3748. package/ts4.0/esm/Options/Classes/Particles/Links/Links.d.ts +0 -22
  3749. package/ts4.0/esm/Options/Classes/Particles/Links/LinksShadow.d.ts +0 -11
  3750. package/ts4.0/esm/Options/Classes/Particles/Links/LinksTriangle.d.ts +0 -12
  3751. package/ts4.0/esm/Options/Classes/Particles/Move/Attract.d.ts +0 -15
  3752. package/ts4.0/esm/Options/Classes/Particles/Move/Move.d.ts +0 -44
  3753. package/ts4.0/esm/Options/Classes/Particles/Move/MoveAngle.d.ts +0 -9
  3754. package/ts4.0/esm/Options/Classes/Particles/Move/MoveGravity.d.ts +0 -11
  3755. package/ts4.0/esm/Options/Classes/Particles/Move/OutModes.d.ts +0 -13
  3756. package/ts4.0/esm/Options/Classes/Particles/Move/Path/Path.d.ts +0 -13
  3757. package/ts4.0/esm/Options/Classes/Particles/Move/Path/PathDelay.d.ts +0 -4
  3758. package/ts4.0/esm/Options/Classes/Particles/Move/Spin.d.ts +0 -11
  3759. package/ts4.0/esm/Options/Classes/Particles/Move/Trail.d.ts +0 -11
  3760. package/ts4.0/esm/Options/Classes/Particles/Number/Density.d.ts +0 -12
  3761. package/ts4.0/esm/Options/Classes/Particles/Number/ParticlesNumber.d.ts +0 -13
  3762. package/ts4.0/esm/Options/Classes/Particles/Opacity/Opacity.d.ts +0 -12
  3763. package/ts4.0/esm/Options/Classes/Particles/Opacity/OpacityAnimation.d.ts +0 -14
  3764. package/ts4.0/esm/Options/Classes/Particles/Orbit/Orbit.d.ts +0 -18
  3765. package/ts4.0/esm/Options/Classes/Particles/Orbit/OrbitRotation.d.ts +0 -7
  3766. package/ts4.0/esm/Options/Classes/Particles/ParticlesOptions.d.ts +0 -58
  3767. package/ts4.0/esm/Options/Classes/Particles/Repulse/Repulse.d.ts +0 -13
  3768. package/ts4.0/esm/Options/Classes/Particles/Roll/Roll.d.ts +0 -14
  3769. package/ts4.0/esm/Options/Classes/Particles/Roll/RollLight.d.ts +0 -9
  3770. package/ts4.0/esm/Options/Classes/Particles/Rotate/Rotate.d.ts +0 -13
  3771. package/ts4.0/esm/Options/Classes/Particles/Rotate/RotateAnimation.d.ts +0 -10
  3772. package/ts4.0/esm/Options/Classes/Particles/Shadow.d.ts +0 -13
  3773. package/ts4.0/esm/Options/Classes/Particles/Shape/Shape.d.ts +0 -27
  3774. package/ts4.0/esm/Options/Classes/Particles/Size/Size.d.ts +0 -12
  3775. package/ts4.0/esm/Options/Classes/Particles/Size/SizeAnimation.d.ts +0 -14
  3776. package/ts4.0/esm/Options/Classes/Particles/Stroke.d.ts +0 -11
  3777. package/ts4.0/esm/Options/Classes/Particles/Tilt/Tilt.d.ts +0 -13
  3778. package/ts4.0/esm/Options/Classes/Particles/Tilt/TiltAnimation.d.ts +0 -10
  3779. package/ts4.0/esm/Options/Classes/Particles/Twinkle/Twinkle.d.ts +0 -10
  3780. package/ts4.0/esm/Options/Classes/Particles/Twinkle/TwinkleValues.d.ts +0 -12
  3781. package/ts4.0/esm/Options/Classes/Particles/Wobble/Wobble.d.ts +0 -10
  3782. package/ts4.0/esm/Options/Classes/Particles/ZIndex/ZIndex.d.ts +0 -11
  3783. package/ts4.0/esm/Options/Classes/Random.d.ts +0 -9
  3784. package/ts4.0/esm/Options/Classes/Responsive.d.ts +0 -10
  3785. package/ts4.0/esm/Options/Classes/Theme/Theme.d.ts +0 -12
  3786. package/ts4.0/esm/Options/Classes/Theme/ThemeDefault.d.ts +0 -10
  3787. package/ts4.0/esm/Options/Classes/ValueWithRandom.d.ts +0 -10
  3788. package/ts4.0/esm/Options/Interfaces/Background/IBackground.d.ts +0 -9
  3789. package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMask.d.ts +0 -7
  3790. package/ts4.0/esm/Options/Interfaces/BackgroundMask/IBackgroundMaskCover.d.ts +0 -5
  3791. package/ts4.0/esm/Options/Interfaces/FullScreen/IFullScreen.d.ts +0 -4
  3792. package/ts4.0/esm/Options/Interfaces/IAnimatable.d.ts +0 -4
  3793. package/ts4.0/esm/Options/Interfaces/IAnimatableColor.d.ts +0 -6
  3794. package/ts4.0/esm/Options/Interfaces/IAnimatableGradient.d.ts +0 -8
  3795. package/ts4.0/esm/Options/Interfaces/IAnimation.d.ts +0 -6
  3796. package/ts4.0/esm/Options/Interfaces/IColorAnimation.d.ts +0 -5
  3797. package/ts4.0/esm/Options/Interfaces/IHslAnimation.d.ts +0 -6
  3798. package/ts4.0/esm/Options/Interfaces/IManualParticle.d.ts +0 -7
  3799. package/ts4.0/esm/Options/Interfaces/IOptionLoader.d.ts +0 -4
  3800. package/ts4.0/esm/Options/Interfaces/IOptions.d.ts +0 -33
  3801. package/ts4.0/esm/Options/Interfaces/IOptionsColor.d.ts +0 -2
  3802. package/ts4.0/esm/Options/Interfaces/IOptionsGradient.d.ts +0 -13
  3803. package/ts4.0/esm/Options/Interfaces/IRandom.d.ts +0 -4
  3804. package/ts4.0/esm/Options/Interfaces/IResponsive.d.ts +0 -6
  3805. package/ts4.0/esm/Options/Interfaces/IValueWithRandom.d.ts +0 -6
  3806. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IClickEvent.d.ts +0 -6
  3807. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IDivEvent.d.ts +0 -11
  3808. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IEvents.d.ts +0 -13
  3809. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IHoverEvent.d.ts +0 -8
  3810. package/ts4.0/esm/Options/Interfaces/Interactivity/Events/IParallax.d.ts +0 -5
  3811. package/ts4.0/esm/Options/Interfaces/Interactivity/IInteractivity.d.ts +0 -9
  3812. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IAttract.d.ts +0 -9
  3813. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBounce.d.ts +0 -3
  3814. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubble.d.ts +0 -6
  3815. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleBase.d.ts +0 -10
  3816. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IBubbleDiv.d.ts +0 -4
  3817. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnect.d.ts +0 -8
  3818. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IConnectLinks.d.ts +0 -3
  3819. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrab.d.ts +0 -7
  3820. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IGrabLinks.d.ts +0 -7
  3821. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILight.d.ts +0 -6
  3822. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightArea.d.ts +0 -9
  3823. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ILightShadow.d.ts +0 -5
  3824. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModeDiv.d.ts +0 -5
  3825. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IModes.d.ts +0 -22
  3826. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IPush.d.ts +0 -6
  3827. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRemove.d.ts +0 -4
  3828. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulse.d.ts +0 -6
  3829. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseBase.d.ts +0 -9
  3830. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/IRepulseDiv.d.ts +0 -4
  3831. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ISlow.d.ts +0 -5
  3832. package/ts4.0/esm/Options/Interfaces/Interactivity/Modes/ITrail.d.ts +0 -8
  3833. package/ts4.0/esm/Options/Interfaces/Motion/IMotion.d.ts +0 -5
  3834. package/ts4.0/esm/Options/Interfaces/Motion/IMotionReduce.d.ts +0 -4
  3835. package/ts4.0/esm/Options/Interfaces/Particles/Bounce/IBounce.d.ts +0 -5
  3836. package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisions.d.ts +0 -9
  3837. package/ts4.0/esm/Options/Interfaces/Particles/Collisions/ICollisionsOverlap.d.ts +0 -4
  3838. package/ts4.0/esm/Options/Interfaces/Particles/Destroy/IDestroy.d.ts +0 -6
  3839. package/ts4.0/esm/Options/Interfaces/Particles/Destroy/ISplit.d.ts +0 -10
  3840. package/ts4.0/esm/Options/Interfaces/Particles/IParticles.d.ts +0 -52
  3841. package/ts4.0/esm/Options/Interfaces/Particles/IShadow.d.ts +0 -8
  3842. package/ts4.0/esm/Options/Interfaces/Particles/IStroke.d.ts +0 -7
  3843. package/ts4.0/esm/Options/Interfaces/Particles/Life/ILife.d.ts +0 -7
  3844. package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDelay.d.ts +0 -4
  3845. package/ts4.0/esm/Options/Interfaces/Particles/Life/ILifeDuration.d.ts +0 -4
  3846. package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinks.d.ts +0 -17
  3847. package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksShadow.d.ts +0 -6
  3848. package/ts4.0/esm/Options/Interfaces/Particles/Links/ILinksTriangle.d.ts +0 -7
  3849. package/ts4.0/esm/Options/Interfaces/Particles/Move/IAttract.d.ts +0 -8
  3850. package/ts4.0/esm/Options/Interfaces/Particles/Move/IMove.d.ts +0 -35
  3851. package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveAngle.d.ts +0 -4
  3852. package/ts4.0/esm/Options/Interfaces/Particles/Move/IMoveGravity.d.ts +0 -6
  3853. package/ts4.0/esm/Options/Interfaces/Particles/Move/IOutModes.d.ts +0 -8
  3854. package/ts4.0/esm/Options/Interfaces/Particles/Move/ISpin.d.ts +0 -7
  3855. package/ts4.0/esm/Options/Interfaces/Particles/Move/ITrail.d.ts +0 -6
  3856. package/ts4.0/esm/Options/Interfaces/Particles/Move/Path/iPath.d.ts +0 -9
  3857. package/ts4.0/esm/Options/Interfaces/Particles/Number/IDensity.d.ts +0 -6
  3858. package/ts4.0/esm/Options/Interfaces/Particles/Number/IParticlesNumber.d.ts +0 -7
  3859. package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacity.d.ts +0 -6
  3860. package/ts4.0/esm/Options/Interfaces/Particles/Opacity/IOpacityAnimation.d.ts +0 -8
  3861. package/ts4.0/esm/Options/Interfaces/Particles/Orbit/IOrbit.d.ts +0 -12
  3862. package/ts4.0/esm/Options/Interfaces/Particles/Repulse/IRepulse.d.ts +0 -8
  3863. package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRoll.d.ts +0 -10
  3864. package/ts4.0/esm/Options/Interfaces/Particles/Roll/IRollLight.d.ts +0 -4
  3865. package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotate.d.ts +0 -8
  3866. package/ts4.0/esm/Options/Interfaces/Particles/Rotate/IRotateAnimation.d.ts +0 -5
  3867. package/ts4.0/esm/Options/Interfaces/Particles/Shape/ICharacterShape.d.ts +0 -8
  3868. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IImageShape.d.ts +0 -8
  3869. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IPolygonShape.d.ts +0 -5
  3870. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShape.d.ts +0 -16
  3871. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IShapeValues.d.ts +0 -1
  3872. package/ts4.0/esm/Options/Interfaces/Particles/Shape/IStarShape.d.ts +0 -6
  3873. package/ts4.0/esm/Options/Interfaces/Particles/Size/ISize.d.ts +0 -6
  3874. package/ts4.0/esm/Options/Interfaces/Particles/Size/ISizeAnimation.d.ts +0 -8
  3875. package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITilt.d.ts +0 -8
  3876. package/ts4.0/esm/Options/Interfaces/Particles/Tilt/ITiltAnimation.d.ts +0 -5
  3877. package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkle.d.ts +0 -5
  3878. package/ts4.0/esm/Options/Interfaces/Particles/Twinkle/ITwinkleValues.d.ts +0 -7
  3879. package/ts4.0/esm/Options/Interfaces/Particles/Wobble/IWobble.d.ts +0 -6
  3880. package/ts4.0/esm/Options/Interfaces/Particles/ZIndex/IZIndex.d.ts +0 -6
  3881. package/ts4.0/esm/Options/Interfaces/Theme/ITheme.d.ts +0 -8
  3882. package/ts4.0/esm/Options/Interfaces/Theme/IThemeDefault.d.ts +0 -5
  3883. package/ts4.0/esm/Plugins/Absorbers/AbsorberContainer.d.ts +0 -7
  3884. package/ts4.0/esm/Plugins/Absorbers/AbsorberInstance.d.ts +0 -33
  3885. package/ts4.0/esm/Plugins/Absorbers/Absorbers.d.ts +0 -25
  3886. package/ts4.0/esm/Plugins/Absorbers/Enums/AbsorberClickMode.d.ts +0 -3
  3887. package/ts4.0/esm/Plugins/Absorbers/Enums/index.d.ts +0 -1
  3888. package/ts4.0/esm/Plugins/Absorbers/Options/Classes/Absorber.d.ts +0 -18
  3889. package/ts4.0/esm/Plugins/Absorbers/Options/Classes/AbsorberSize.d.ts +0 -10
  3890. package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorber.d.ts +0 -14
  3891. package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberOptions.d.ts +0 -12
  3892. package/ts4.0/esm/Plugins/Absorbers/Options/Interfaces/IAbsorberSize.d.ts +0 -5
  3893. package/ts4.0/esm/Plugins/Absorbers/plugin.d.ts +0 -2
  3894. package/ts4.0/esm/Plugins/Emitters/EmitterContainer.d.ts +0 -9
  3895. package/ts4.0/esm/Plugins/Emitters/EmitterInstance.d.ts +0 -41
  3896. package/ts4.0/esm/Plugins/Emitters/Emitters.d.ts +0 -24
  3897. package/ts4.0/esm/Plugins/Emitters/EmittersMain.d.ts +0 -5
  3898. package/ts4.0/esm/Plugins/Emitters/Enums/EmitterClickMode.d.ts +0 -3
  3899. package/ts4.0/esm/Plugins/Emitters/Enums/EmitterShapeType.d.ts +0 -4
  3900. package/ts4.0/esm/Plugins/Emitters/Enums/index.d.ts +0 -2
  3901. package/ts4.0/esm/Plugins/Emitters/IEmitterShape.d.ts +0 -4
  3902. package/ts4.0/esm/Plugins/Emitters/Options/Classes/Emitter.d.ts +0 -27
  3903. package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterLife.d.ts +0 -11
  3904. package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterRate.d.ts +0 -9
  3905. package/ts4.0/esm/Plugins/Emitters/Options/Classes/EmitterSize.d.ts +0 -11
  3906. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitter.d.ts +0 -23
  3907. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterLife.d.ts +0 -6
  3908. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterOptions.d.ts +0 -12
  3909. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterRate.d.ts +0 -5
  3910. package/ts4.0/esm/Plugins/Emitters/Options/Interfaces/IEmitterSize.d.ts +0 -5
  3911. package/ts4.0/esm/Plugins/Emitters/ShapeManager.d.ts +0 -6
  3912. package/ts4.0/esm/Plugins/Emitters/Shapes/Circle/CircleShape.d.ts +0 -5
  3913. package/ts4.0/esm/Plugins/Emitters/Shapes/Square/SquareShape.d.ts +0 -5
  3914. package/ts4.0/esm/Plugins/Emitters/plugin.d.ts +0 -3
  3915. package/ts4.0/esm/Plugins/PolygonMask/Enums/InlineArrangement.d.ts +0 -8
  3916. package/ts4.0/esm/Plugins/PolygonMask/Enums/MoveType.d.ts +0 -4
  3917. package/ts4.0/esm/Plugins/PolygonMask/Enums/Type.d.ts +0 -6
  3918. package/ts4.0/esm/Plugins/PolygonMask/Enums/index.d.ts +0 -3
  3919. package/ts4.0/esm/Plugins/PolygonMask/Interfaces/ISvgPath.d.ts +0 -5
  3920. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Draw.d.ts +0 -15
  3921. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/DrawStroke.d.ts +0 -11
  3922. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Inline.d.ts +0 -9
  3923. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/LocalSvg.d.ts +0 -11
  3924. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/Move.d.ts +0 -10
  3925. package/ts4.0/esm/Plugins/PolygonMask/Options/Classes/PolygonMask.d.ts +0 -24
  3926. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDraw.d.ts +0 -8
  3927. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IDrawStroke.d.ts +0 -6
  3928. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IInline.d.ts +0 -4
  3929. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/ILocalSvg.d.ts +0 -6
  3930. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IMove.d.ts +0 -5
  3931. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMask.d.ts +0 -19
  3932. package/ts4.0/esm/Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions.d.ts +0 -4
  3933. package/ts4.0/esm/Plugins/PolygonMask/PolygonMaskInstance.d.ts +0 -48
  3934. package/ts4.0/esm/Plugins/PolygonMask/plugin.d.ts +0 -2
  3935. package/ts4.0/esm/Shapes/Circle/CircleDrawer.d.ts +0 -5
  3936. package/ts4.0/esm/Shapes/Circle/index.d.ts +0 -2
  3937. package/ts4.0/esm/Shapes/Image/ImageDrawer.d.ts +0 -22
  3938. package/ts4.0/esm/Shapes/Image/Utils.d.ts +0 -25
  3939. package/ts4.0/esm/Shapes/Image/index.d.ts +0 -2
  3940. package/ts4.0/esm/Shapes/Line/LineDrawer.d.ts +0 -5
  3941. package/ts4.0/esm/Shapes/Line/index.d.ts +0 -2
  3942. package/ts4.0/esm/Shapes/Polygon/PolygonDrawer.d.ts +0 -7
  3943. package/ts4.0/esm/Shapes/Polygon/PolygonDrawerBase.d.ts +0 -15
  3944. package/ts4.0/esm/Shapes/Polygon/TriangleDrawer.d.ts +0 -8
  3945. package/ts4.0/esm/Shapes/Polygon/index.d.ts +0 -4
  3946. package/ts4.0/esm/Shapes/Square/SquareDrawer.d.ts +0 -5
  3947. package/ts4.0/esm/Shapes/Square/index.d.ts +0 -2
  3948. package/ts4.0/esm/Shapes/Star/StarDrawer.d.ts +0 -5
  3949. package/ts4.0/esm/Shapes/Star/index.d.ts +0 -2
  3950. package/ts4.0/esm/Shapes/Text/TextDrawer.d.ts +0 -8
  3951. package/ts4.0/esm/Shapes/Text/index.d.ts +0 -2
  3952. package/ts4.0/esm/Types/ParticlesGroups.d.ts +0 -4
  3953. package/ts4.0/esm/Types/PathOptions.d.ts +0 -3
  3954. package/ts4.0/esm/Types/RangeValue.d.ts +0 -2
  3955. package/ts4.0/esm/Types/RecursivePartial.d.ts +0 -3
  3956. package/ts4.0/esm/Types/ShapeData.d.ts +0 -5
  3957. package/ts4.0/esm/Types/ShapeDrawerFunctions.d.ts +0 -11
  3958. package/ts4.0/esm/Types/SingleOrMultiple.d.ts +0 -1
  3959. package/ts4.0/esm/Types/index.d.ts +0 -6
  3960. package/ts4.0/esm/Updaters/Angle/AngleUpdater.d.ts +0 -6
  3961. package/ts4.0/esm/Updaters/Angle/index.d.ts +0 -2
  3962. package/ts4.0/esm/Updaters/Color/ColorUpdater.d.ts +0 -6
  3963. package/ts4.0/esm/Updaters/Color/index.d.ts +0 -2
  3964. package/ts4.0/esm/Updaters/Life/LifeUpdater.d.ts +0 -9
  3965. package/ts4.0/esm/Updaters/Life/index.d.ts +0 -2
  3966. package/ts4.0/esm/Updaters/Opacity/OpacityUpdater.d.ts +0 -6
  3967. package/ts4.0/esm/Updaters/Opacity/index.d.ts +0 -2
  3968. package/ts4.0/esm/Updaters/OutModes/IBounceData.d.ts +0 -12
  3969. package/ts4.0/esm/Updaters/OutModes/OutOfCanvasUpdater.d.ts +0 -14
  3970. package/ts4.0/esm/Updaters/OutModes/Utils.d.ts +0 -3
  3971. package/ts4.0/esm/Updaters/OutModes/index.d.ts +0 -2
  3972. package/ts4.0/esm/Updaters/Roll/RollUpdater.d.ts +0 -6
  3973. package/ts4.0/esm/Updaters/Roll/index.d.ts +0 -2
  3974. package/ts4.0/esm/Updaters/Size/SizeUpdater.d.ts +0 -6
  3975. package/ts4.0/esm/Updaters/Size/index.d.ts +0 -2
  3976. package/ts4.0/esm/Updaters/StrokeColor/StrokeColorUpdater.d.ts +0 -6
  3977. package/ts4.0/esm/Updaters/StrokeColor/index.d.ts +0 -2
  3978. package/ts4.0/esm/Updaters/Tilt/TiltUpdater.d.ts +0 -6
  3979. package/ts4.0/esm/Updaters/Tilt/index.d.ts +0 -2
  3980. package/ts4.0/esm/Updaters/Wobble/WobbleUpdater.d.ts +0 -6
  3981. package/ts4.0/esm/Updaters/Wobble/index.d.ts +0 -2
  3982. package/ts4.0/esm/Utils/CanvasUtils.d.ts +0 -18
  3983. package/ts4.0/esm/Utils/Circle.d.ts +0 -8
  3984. package/ts4.0/esm/Utils/CircleWarp.d.ts +0 -10
  3985. package/ts4.0/esm/Utils/ColorUtils.d.ts +0 -26
  3986. package/ts4.0/esm/Utils/Constants.d.ts +0 -18
  3987. package/ts4.0/esm/Utils/EventListeners.d.ts +0 -30
  3988. package/ts4.0/esm/Utils/NumberUtils.d.ts +0 -23
  3989. package/ts4.0/esm/Utils/Plugins.d.ts +0 -22
  3990. package/ts4.0/esm/Utils/Point.d.ts +0 -7
  3991. package/ts4.0/esm/Utils/QuadTree.d.ts +0 -23
  3992. package/ts4.0/esm/Utils/Range.d.ts +0 -7
  3993. package/ts4.0/esm/Utils/Rectangle.d.ts +0 -9
  3994. package/ts4.0/esm/Utils/Utils.d.ts +0 -65
  3995. package/ts4.0/esm/Utils/index.d.ts +0 -13
  3996. package/ts4.0/esm/full.d.ts +0 -2
  3997. package/ts4.0/esm/index.d.ts +0 -31
  3998. package/ts4.0/esm/index.slim.d.ts +0 -25
  3999. package/ts4.0/esm/main.d.ts +0 -24
  4000. package/ts4.0/esm/pjs.d.ts +0 -14
  4001. package/ts4.0/esm/slim.d.ts +0 -2
  4002. package/ts4.0/full.d.ts +0 -2
  4003. package/ts4.0/index.d.ts +0 -31
  4004. package/ts4.0/index.slim.d.ts +0 -25
  4005. package/ts4.0/main.d.ts +0 -24
  4006. package/ts4.0/pjs.d.ts +0 -14
  4007. package/ts4.0/slim.d.ts +0 -2
package/167.js ADDED
@@ -0,0 +1,1775 @@
1
+ /*!
2
+ * Author : Matteo Bruni
3
+ * MIT license: https://opensource.org/licenses/MIT
4
+ * Demo / Generator : https://particles.js.org/
5
+ * GitHub : https://www.github.com/matteobruni/tsparticles
6
+ * How to use? : Check the GitHub README
7
+ * v1.35.0
8
+ */
9
+ "use strict";
10
+ (this["webpackChunktsparticles"] = this["webpackChunktsparticles"] || []).push([[167],{
11
+
12
+ /***/ 167:
13
+ /***/ (() => {
14
+
15
+
16
+
17
+ (function () {
18
+ "use strict";
19
+
20
+ if (typeof window === "undefined") return;
21
+
22
+ if (!("SVGPathSeg" in window)) {
23
+ window.SVGPathSeg = function (type, typeAsLetter, owningPathSegList) {
24
+ this.pathSegType = type;
25
+ this.pathSegTypeAsLetter = typeAsLetter;
26
+ this._owningPathSegList = owningPathSegList;
27
+ };
28
+
29
+ window.SVGPathSeg.prototype.classname = "SVGPathSeg";
30
+ window.SVGPathSeg.PATHSEG_UNKNOWN = 0;
31
+ window.SVGPathSeg.PATHSEG_CLOSEPATH = 1;
32
+ window.SVGPathSeg.PATHSEG_MOVETO_ABS = 2;
33
+ window.SVGPathSeg.PATHSEG_MOVETO_REL = 3;
34
+ window.SVGPathSeg.PATHSEG_LINETO_ABS = 4;
35
+ window.SVGPathSeg.PATHSEG_LINETO_REL = 5;
36
+ window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS = 6;
37
+ window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL = 7;
38
+ window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS = 8;
39
+ window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL = 9;
40
+ window.SVGPathSeg.PATHSEG_ARC_ABS = 10;
41
+ window.SVGPathSeg.PATHSEG_ARC_REL = 11;
42
+ window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS = 12;
43
+ window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL = 13;
44
+ window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS = 14;
45
+ window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL = 15;
46
+ window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16;
47
+ window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17;
48
+ window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18;
49
+ window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19;
50
+
51
+ window.SVGPathSeg.prototype._segmentChanged = function () {
52
+ if (this._owningPathSegList) this._owningPathSegList.segmentChanged(this);
53
+ };
54
+
55
+ window.SVGPathSegClosePath = function (owningPathSegList) {
56
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CLOSEPATH, "z", owningPathSegList);
57
+ };
58
+
59
+ window.SVGPathSegClosePath.prototype = Object.create(window.SVGPathSeg.prototype);
60
+
61
+ window.SVGPathSegClosePath.prototype.toString = function () {
62
+ return "[object SVGPathSegClosePath]";
63
+ };
64
+
65
+ window.SVGPathSegClosePath.prototype._asPathString = function () {
66
+ return this.pathSegTypeAsLetter;
67
+ };
68
+
69
+ window.SVGPathSegClosePath.prototype.clone = function () {
70
+ return new window.SVGPathSegClosePath(undefined);
71
+ };
72
+
73
+ window.SVGPathSegMovetoAbs = function (owningPathSegList, x, y) {
74
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_MOVETO_ABS, "M", owningPathSegList);
75
+ this._x = x;
76
+ this._y = y;
77
+ };
78
+
79
+ window.SVGPathSegMovetoAbs.prototype = Object.create(window.SVGPathSeg.prototype);
80
+
81
+ window.SVGPathSegMovetoAbs.prototype.toString = function () {
82
+ return "[object SVGPathSegMovetoAbs]";
83
+ };
84
+
85
+ window.SVGPathSegMovetoAbs.prototype._asPathString = function () {
86
+ return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
87
+ };
88
+
89
+ window.SVGPathSegMovetoAbs.prototype.clone = function () {
90
+ return new window.SVGPathSegMovetoAbs(undefined, this._x, this._y);
91
+ };
92
+
93
+ Object.defineProperty(window.SVGPathSegMovetoAbs.prototype, "x", {
94
+ get: function () {
95
+ return this._x;
96
+ },
97
+ set: function (x) {
98
+ this._x = x;
99
+
100
+ this._segmentChanged();
101
+ },
102
+ enumerable: true
103
+ });
104
+ Object.defineProperty(window.SVGPathSegMovetoAbs.prototype, "y", {
105
+ get: function () {
106
+ return this._y;
107
+ },
108
+ set: function (y) {
109
+ this._y = y;
110
+
111
+ this._segmentChanged();
112
+ },
113
+ enumerable: true
114
+ });
115
+
116
+ window.SVGPathSegMovetoRel = function (owningPathSegList, x, y) {
117
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_MOVETO_REL, "m", owningPathSegList);
118
+ this._x = x;
119
+ this._y = y;
120
+ };
121
+
122
+ window.SVGPathSegMovetoRel.prototype = Object.create(window.SVGPathSeg.prototype);
123
+
124
+ window.SVGPathSegMovetoRel.prototype.toString = function () {
125
+ return "[object SVGPathSegMovetoRel]";
126
+ };
127
+
128
+ window.SVGPathSegMovetoRel.prototype._asPathString = function () {
129
+ return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
130
+ };
131
+
132
+ window.SVGPathSegMovetoRel.prototype.clone = function () {
133
+ return new window.SVGPathSegMovetoRel(undefined, this._x, this._y);
134
+ };
135
+
136
+ Object.defineProperty(window.SVGPathSegMovetoRel.prototype, "x", {
137
+ get: function () {
138
+ return this._x;
139
+ },
140
+ set: function (x) {
141
+ this._x = x;
142
+
143
+ this._segmentChanged();
144
+ },
145
+ enumerable: true
146
+ });
147
+ Object.defineProperty(window.SVGPathSegMovetoRel.prototype, "y", {
148
+ get: function () {
149
+ return this._y;
150
+ },
151
+ set: function (y) {
152
+ this._y = y;
153
+
154
+ this._segmentChanged();
155
+ },
156
+ enumerable: true
157
+ });
158
+
159
+ window.SVGPathSegLinetoAbs = function (owningPathSegList, x, y) {
160
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_ABS, "L", owningPathSegList);
161
+ this._x = x;
162
+ this._y = y;
163
+ };
164
+
165
+ window.SVGPathSegLinetoAbs.prototype = Object.create(window.SVGPathSeg.prototype);
166
+
167
+ window.SVGPathSegLinetoAbs.prototype.toString = function () {
168
+ return "[object SVGPathSegLinetoAbs]";
169
+ };
170
+
171
+ window.SVGPathSegLinetoAbs.prototype._asPathString = function () {
172
+ return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
173
+ };
174
+
175
+ window.SVGPathSegLinetoAbs.prototype.clone = function () {
176
+ return new window.SVGPathSegLinetoAbs(undefined, this._x, this._y);
177
+ };
178
+
179
+ Object.defineProperty(window.SVGPathSegLinetoAbs.prototype, "x", {
180
+ get: function () {
181
+ return this._x;
182
+ },
183
+ set: function (x) {
184
+ this._x = x;
185
+
186
+ this._segmentChanged();
187
+ },
188
+ enumerable: true
189
+ });
190
+ Object.defineProperty(window.SVGPathSegLinetoAbs.prototype, "y", {
191
+ get: function () {
192
+ return this._y;
193
+ },
194
+ set: function (y) {
195
+ this._y = y;
196
+
197
+ this._segmentChanged();
198
+ },
199
+ enumerable: true
200
+ });
201
+
202
+ window.SVGPathSegLinetoRel = function (owningPathSegList, x, y) {
203
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_REL, "l", owningPathSegList);
204
+ this._x = x;
205
+ this._y = y;
206
+ };
207
+
208
+ window.SVGPathSegLinetoRel.prototype = Object.create(window.SVGPathSeg.prototype);
209
+
210
+ window.SVGPathSegLinetoRel.prototype.toString = function () {
211
+ return "[object SVGPathSegLinetoRel]";
212
+ };
213
+
214
+ window.SVGPathSegLinetoRel.prototype._asPathString = function () {
215
+ return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
216
+ };
217
+
218
+ window.SVGPathSegLinetoRel.prototype.clone = function () {
219
+ return new window.SVGPathSegLinetoRel(undefined, this._x, this._y);
220
+ };
221
+
222
+ Object.defineProperty(window.SVGPathSegLinetoRel.prototype, "x", {
223
+ get: function () {
224
+ return this._x;
225
+ },
226
+ set: function (x) {
227
+ this._x = x;
228
+
229
+ this._segmentChanged();
230
+ },
231
+ enumerable: true
232
+ });
233
+ Object.defineProperty(window.SVGPathSegLinetoRel.prototype, "y", {
234
+ get: function () {
235
+ return this._y;
236
+ },
237
+ set: function (y) {
238
+ this._y = y;
239
+
240
+ this._segmentChanged();
241
+ },
242
+ enumerable: true
243
+ });
244
+
245
+ window.SVGPathSegCurvetoCubicAbs = function (owningPathSegList, x, y, x1, y1, x2, y2) {
246
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS, "C", owningPathSegList);
247
+ this._x = x;
248
+ this._y = y;
249
+ this._x1 = x1;
250
+ this._y1 = y1;
251
+ this._x2 = x2;
252
+ this._y2 = y2;
253
+ };
254
+
255
+ window.SVGPathSegCurvetoCubicAbs.prototype = Object.create(window.SVGPathSeg.prototype);
256
+
257
+ window.SVGPathSegCurvetoCubicAbs.prototype.toString = function () {
258
+ return "[object SVGPathSegCurvetoCubicAbs]";
259
+ };
260
+
261
+ window.SVGPathSegCurvetoCubicAbs.prototype._asPathString = function () {
262
+ return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
263
+ };
264
+
265
+ window.SVGPathSegCurvetoCubicAbs.prototype.clone = function () {
266
+ return new window.SVGPathSegCurvetoCubicAbs(undefined, this._x, this._y, this._x1, this._y1, this._x2, this._y2);
267
+ };
268
+
269
+ Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "x", {
270
+ get: function () {
271
+ return this._x;
272
+ },
273
+ set: function (x) {
274
+ this._x = x;
275
+
276
+ this._segmentChanged();
277
+ },
278
+ enumerable: true
279
+ });
280
+ Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "y", {
281
+ get: function () {
282
+ return this._y;
283
+ },
284
+ set: function (y) {
285
+ this._y = y;
286
+
287
+ this._segmentChanged();
288
+ },
289
+ enumerable: true
290
+ });
291
+ Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "x1", {
292
+ get: function () {
293
+ return this._x1;
294
+ },
295
+ set: function (x1) {
296
+ this._x1 = x1;
297
+
298
+ this._segmentChanged();
299
+ },
300
+ enumerable: true
301
+ });
302
+ Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "y1", {
303
+ get: function () {
304
+ return this._y1;
305
+ },
306
+ set: function (y1) {
307
+ this._y1 = y1;
308
+
309
+ this._segmentChanged();
310
+ },
311
+ enumerable: true
312
+ });
313
+ Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "x2", {
314
+ get: function () {
315
+ return this._x2;
316
+ },
317
+ set: function (x2) {
318
+ this._x2 = x2;
319
+
320
+ this._segmentChanged();
321
+ },
322
+ enumerable: true
323
+ });
324
+ Object.defineProperty(window.SVGPathSegCurvetoCubicAbs.prototype, "y2", {
325
+ get: function () {
326
+ return this._y2;
327
+ },
328
+ set: function (y2) {
329
+ this._y2 = y2;
330
+
331
+ this._segmentChanged();
332
+ },
333
+ enumerable: true
334
+ });
335
+
336
+ window.SVGPathSegCurvetoCubicRel = function (owningPathSegList, x, y, x1, y1, x2, y2) {
337
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL, "c", owningPathSegList);
338
+ this._x = x;
339
+ this._y = y;
340
+ this._x1 = x1;
341
+ this._y1 = y1;
342
+ this._x2 = x2;
343
+ this._y2 = y2;
344
+ };
345
+
346
+ window.SVGPathSegCurvetoCubicRel.prototype = Object.create(window.SVGPathSeg.prototype);
347
+
348
+ window.SVGPathSegCurvetoCubicRel.prototype.toString = function () {
349
+ return "[object SVGPathSegCurvetoCubicRel]";
350
+ };
351
+
352
+ window.SVGPathSegCurvetoCubicRel.prototype._asPathString = function () {
353
+ return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
354
+ };
355
+
356
+ window.SVGPathSegCurvetoCubicRel.prototype.clone = function () {
357
+ return new window.SVGPathSegCurvetoCubicRel(undefined, this._x, this._y, this._x1, this._y1, this._x2, this._y2);
358
+ };
359
+
360
+ Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "x", {
361
+ get: function () {
362
+ return this._x;
363
+ },
364
+ set: function (x) {
365
+ this._x = x;
366
+
367
+ this._segmentChanged();
368
+ },
369
+ enumerable: true
370
+ });
371
+ Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "y", {
372
+ get: function () {
373
+ return this._y;
374
+ },
375
+ set: function (y) {
376
+ this._y = y;
377
+
378
+ this._segmentChanged();
379
+ },
380
+ enumerable: true
381
+ });
382
+ Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "x1", {
383
+ get: function () {
384
+ return this._x1;
385
+ },
386
+ set: function (x1) {
387
+ this._x1 = x1;
388
+
389
+ this._segmentChanged();
390
+ },
391
+ enumerable: true
392
+ });
393
+ Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "y1", {
394
+ get: function () {
395
+ return this._y1;
396
+ },
397
+ set: function (y1) {
398
+ this._y1 = y1;
399
+
400
+ this._segmentChanged();
401
+ },
402
+ enumerable: true
403
+ });
404
+ Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "x2", {
405
+ get: function () {
406
+ return this._x2;
407
+ },
408
+ set: function (x2) {
409
+ this._x2 = x2;
410
+
411
+ this._segmentChanged();
412
+ },
413
+ enumerable: true
414
+ });
415
+ Object.defineProperty(window.SVGPathSegCurvetoCubicRel.prototype, "y2", {
416
+ get: function () {
417
+ return this._y2;
418
+ },
419
+ set: function (y2) {
420
+ this._y2 = y2;
421
+
422
+ this._segmentChanged();
423
+ },
424
+ enumerable: true
425
+ });
426
+
427
+ window.SVGPathSegCurvetoQuadraticAbs = function (owningPathSegList, x, y, x1, y1) {
428
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS, "Q", owningPathSegList);
429
+ this._x = x;
430
+ this._y = y;
431
+ this._x1 = x1;
432
+ this._y1 = y1;
433
+ };
434
+
435
+ window.SVGPathSegCurvetoQuadraticAbs.prototype = Object.create(window.SVGPathSeg.prototype);
436
+
437
+ window.SVGPathSegCurvetoQuadraticAbs.prototype.toString = function () {
438
+ return "[object SVGPathSegCurvetoQuadraticAbs]";
439
+ };
440
+
441
+ window.SVGPathSegCurvetoQuadraticAbs.prototype._asPathString = function () {
442
+ return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x + " " + this._y;
443
+ };
444
+
445
+ window.SVGPathSegCurvetoQuadraticAbs.prototype.clone = function () {
446
+ return new window.SVGPathSegCurvetoQuadraticAbs(undefined, this._x, this._y, this._x1, this._y1);
447
+ };
448
+
449
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "x", {
450
+ get: function () {
451
+ return this._x;
452
+ },
453
+ set: function (x) {
454
+ this._x = x;
455
+
456
+ this._segmentChanged();
457
+ },
458
+ enumerable: true
459
+ });
460
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "y", {
461
+ get: function () {
462
+ return this._y;
463
+ },
464
+ set: function (y) {
465
+ this._y = y;
466
+
467
+ this._segmentChanged();
468
+ },
469
+ enumerable: true
470
+ });
471
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "x1", {
472
+ get: function () {
473
+ return this._x1;
474
+ },
475
+ set: function (x1) {
476
+ this._x1 = x1;
477
+
478
+ this._segmentChanged();
479
+ },
480
+ enumerable: true
481
+ });
482
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticAbs.prototype, "y1", {
483
+ get: function () {
484
+ return this._y1;
485
+ },
486
+ set: function (y1) {
487
+ this._y1 = y1;
488
+
489
+ this._segmentChanged();
490
+ },
491
+ enumerable: true
492
+ });
493
+
494
+ window.SVGPathSegCurvetoQuadraticRel = function (owningPathSegList, x, y, x1, y1) {
495
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL, "q", owningPathSegList);
496
+ this._x = x;
497
+ this._y = y;
498
+ this._x1 = x1;
499
+ this._y1 = y1;
500
+ };
501
+
502
+ window.SVGPathSegCurvetoQuadraticRel.prototype = Object.create(window.SVGPathSeg.prototype);
503
+
504
+ window.SVGPathSegCurvetoQuadraticRel.prototype.toString = function () {
505
+ return "[object SVGPathSegCurvetoQuadraticRel]";
506
+ };
507
+
508
+ window.SVGPathSegCurvetoQuadraticRel.prototype._asPathString = function () {
509
+ return this.pathSegTypeAsLetter + " " + this._x1 + " " + this._y1 + " " + this._x + " " + this._y;
510
+ };
511
+
512
+ window.SVGPathSegCurvetoQuadraticRel.prototype.clone = function () {
513
+ return new window.SVGPathSegCurvetoQuadraticRel(undefined, this._x, this._y, this._x1, this._y1);
514
+ };
515
+
516
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "x", {
517
+ get: function () {
518
+ return this._x;
519
+ },
520
+ set: function (x) {
521
+ this._x = x;
522
+
523
+ this._segmentChanged();
524
+ },
525
+ enumerable: true
526
+ });
527
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "y", {
528
+ get: function () {
529
+ return this._y;
530
+ },
531
+ set: function (y) {
532
+ this._y = y;
533
+
534
+ this._segmentChanged();
535
+ },
536
+ enumerable: true
537
+ });
538
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "x1", {
539
+ get: function () {
540
+ return this._x1;
541
+ },
542
+ set: function (x1) {
543
+ this._x1 = x1;
544
+
545
+ this._segmentChanged();
546
+ },
547
+ enumerable: true
548
+ });
549
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticRel.prototype, "y1", {
550
+ get: function () {
551
+ return this._y1;
552
+ },
553
+ set: function (y1) {
554
+ this._y1 = y1;
555
+
556
+ this._segmentChanged();
557
+ },
558
+ enumerable: true
559
+ });
560
+
561
+ window.SVGPathSegArcAbs = function (owningPathSegList, x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
562
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_ARC_ABS, "A", owningPathSegList);
563
+ this._x = x;
564
+ this._y = y;
565
+ this._r1 = r1;
566
+ this._r2 = r2;
567
+ this._angle = angle;
568
+ this._largeArcFlag = largeArcFlag;
569
+ this._sweepFlag = sweepFlag;
570
+ };
571
+
572
+ window.SVGPathSegArcAbs.prototype = Object.create(window.SVGPathSeg.prototype);
573
+
574
+ window.SVGPathSegArcAbs.prototype.toString = function () {
575
+ return "[object SVGPathSegArcAbs]";
576
+ };
577
+
578
+ window.SVGPathSegArcAbs.prototype._asPathString = function () {
579
+ return this.pathSegTypeAsLetter + " " + this._r1 + " " + this._r2 + " " + this._angle + " " + (this._largeArcFlag ? "1" : "0") + " " + (this._sweepFlag ? "1" : "0") + " " + this._x + " " + this._y;
580
+ };
581
+
582
+ window.SVGPathSegArcAbs.prototype.clone = function () {
583
+ return new window.SVGPathSegArcAbs(undefined, this._x, this._y, this._r1, this._r2, this._angle, this._largeArcFlag, this._sweepFlag);
584
+ };
585
+
586
+ Object.defineProperty(window.SVGPathSegArcAbs.prototype, "x", {
587
+ get: function () {
588
+ return this._x;
589
+ },
590
+ set: function (x) {
591
+ this._x = x;
592
+
593
+ this._segmentChanged();
594
+ },
595
+ enumerable: true
596
+ });
597
+ Object.defineProperty(window.SVGPathSegArcAbs.prototype, "y", {
598
+ get: function () {
599
+ return this._y;
600
+ },
601
+ set: function (y) {
602
+ this._y = y;
603
+
604
+ this._segmentChanged();
605
+ },
606
+ enumerable: true
607
+ });
608
+ Object.defineProperty(window.SVGPathSegArcAbs.prototype, "r1", {
609
+ get: function () {
610
+ return this._r1;
611
+ },
612
+ set: function (r1) {
613
+ this._r1 = r1;
614
+
615
+ this._segmentChanged();
616
+ },
617
+ enumerable: true
618
+ });
619
+ Object.defineProperty(window.SVGPathSegArcAbs.prototype, "r2", {
620
+ get: function () {
621
+ return this._r2;
622
+ },
623
+ set: function (r2) {
624
+ this._r2 = r2;
625
+
626
+ this._segmentChanged();
627
+ },
628
+ enumerable: true
629
+ });
630
+ Object.defineProperty(window.SVGPathSegArcAbs.prototype, "angle", {
631
+ get: function () {
632
+ return this._angle;
633
+ },
634
+ set: function (angle) {
635
+ this._angle = angle;
636
+
637
+ this._segmentChanged();
638
+ },
639
+ enumerable: true
640
+ });
641
+ Object.defineProperty(window.SVGPathSegArcAbs.prototype, "largeArcFlag", {
642
+ get: function () {
643
+ return this._largeArcFlag;
644
+ },
645
+ set: function (largeArcFlag) {
646
+ this._largeArcFlag = largeArcFlag;
647
+
648
+ this._segmentChanged();
649
+ },
650
+ enumerable: true
651
+ });
652
+ Object.defineProperty(window.SVGPathSegArcAbs.prototype, "sweepFlag", {
653
+ get: function () {
654
+ return this._sweepFlag;
655
+ },
656
+ set: function (sweepFlag) {
657
+ this._sweepFlag = sweepFlag;
658
+
659
+ this._segmentChanged();
660
+ },
661
+ enumerable: true
662
+ });
663
+
664
+ window.SVGPathSegArcRel = function (owningPathSegList, x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
665
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_ARC_REL, "a", owningPathSegList);
666
+ this._x = x;
667
+ this._y = y;
668
+ this._r1 = r1;
669
+ this._r2 = r2;
670
+ this._angle = angle;
671
+ this._largeArcFlag = largeArcFlag;
672
+ this._sweepFlag = sweepFlag;
673
+ };
674
+
675
+ window.SVGPathSegArcRel.prototype = Object.create(window.SVGPathSeg.prototype);
676
+
677
+ window.SVGPathSegArcRel.prototype.toString = function () {
678
+ return "[object SVGPathSegArcRel]";
679
+ };
680
+
681
+ window.SVGPathSegArcRel.prototype._asPathString = function () {
682
+ return this.pathSegTypeAsLetter + " " + this._r1 + " " + this._r2 + " " + this._angle + " " + (this._largeArcFlag ? "1" : "0") + " " + (this._sweepFlag ? "1" : "0") + " " + this._x + " " + this._y;
683
+ };
684
+
685
+ window.SVGPathSegArcRel.prototype.clone = function () {
686
+ return new window.SVGPathSegArcRel(undefined, this._x, this._y, this._r1, this._r2, this._angle, this._largeArcFlag, this._sweepFlag);
687
+ };
688
+
689
+ Object.defineProperty(window.SVGPathSegArcRel.prototype, "x", {
690
+ get: function () {
691
+ return this._x;
692
+ },
693
+ set: function (x) {
694
+ this._x = x;
695
+
696
+ this._segmentChanged();
697
+ },
698
+ enumerable: true
699
+ });
700
+ Object.defineProperty(window.SVGPathSegArcRel.prototype, "y", {
701
+ get: function () {
702
+ return this._y;
703
+ },
704
+ set: function (y) {
705
+ this._y = y;
706
+
707
+ this._segmentChanged();
708
+ },
709
+ enumerable: true
710
+ });
711
+ Object.defineProperty(window.SVGPathSegArcRel.prototype, "r1", {
712
+ get: function () {
713
+ return this._r1;
714
+ },
715
+ set: function (r1) {
716
+ this._r1 = r1;
717
+
718
+ this._segmentChanged();
719
+ },
720
+ enumerable: true
721
+ });
722
+ Object.defineProperty(window.SVGPathSegArcRel.prototype, "r2", {
723
+ get: function () {
724
+ return this._r2;
725
+ },
726
+ set: function (r2) {
727
+ this._r2 = r2;
728
+
729
+ this._segmentChanged();
730
+ },
731
+ enumerable: true
732
+ });
733
+ Object.defineProperty(window.SVGPathSegArcRel.prototype, "angle", {
734
+ get: function () {
735
+ return this._angle;
736
+ },
737
+ set: function (angle) {
738
+ this._angle = angle;
739
+
740
+ this._segmentChanged();
741
+ },
742
+ enumerable: true
743
+ });
744
+ Object.defineProperty(window.SVGPathSegArcRel.prototype, "largeArcFlag", {
745
+ get: function () {
746
+ return this._largeArcFlag;
747
+ },
748
+ set: function (largeArcFlag) {
749
+ this._largeArcFlag = largeArcFlag;
750
+
751
+ this._segmentChanged();
752
+ },
753
+ enumerable: true
754
+ });
755
+ Object.defineProperty(window.SVGPathSegArcRel.prototype, "sweepFlag", {
756
+ get: function () {
757
+ return this._sweepFlag;
758
+ },
759
+ set: function (sweepFlag) {
760
+ this._sweepFlag = sweepFlag;
761
+
762
+ this._segmentChanged();
763
+ },
764
+ enumerable: true
765
+ });
766
+
767
+ window.SVGPathSegLinetoHorizontalAbs = function (owningPathSegList, x) {
768
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS, "H", owningPathSegList);
769
+ this._x = x;
770
+ };
771
+
772
+ window.SVGPathSegLinetoHorizontalAbs.prototype = Object.create(window.SVGPathSeg.prototype);
773
+
774
+ window.SVGPathSegLinetoHorizontalAbs.prototype.toString = function () {
775
+ return "[object SVGPathSegLinetoHorizontalAbs]";
776
+ };
777
+
778
+ window.SVGPathSegLinetoHorizontalAbs.prototype._asPathString = function () {
779
+ return this.pathSegTypeAsLetter + " " + this._x;
780
+ };
781
+
782
+ window.SVGPathSegLinetoHorizontalAbs.prototype.clone = function () {
783
+ return new window.SVGPathSegLinetoHorizontalAbs(undefined, this._x);
784
+ };
785
+
786
+ Object.defineProperty(window.SVGPathSegLinetoHorizontalAbs.prototype, "x", {
787
+ get: function () {
788
+ return this._x;
789
+ },
790
+ set: function (x) {
791
+ this._x = x;
792
+
793
+ this._segmentChanged();
794
+ },
795
+ enumerable: true
796
+ });
797
+
798
+ window.SVGPathSegLinetoHorizontalRel = function (owningPathSegList, x) {
799
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL, "h", owningPathSegList);
800
+ this._x = x;
801
+ };
802
+
803
+ window.SVGPathSegLinetoHorizontalRel.prototype = Object.create(window.SVGPathSeg.prototype);
804
+
805
+ window.SVGPathSegLinetoHorizontalRel.prototype.toString = function () {
806
+ return "[object SVGPathSegLinetoHorizontalRel]";
807
+ };
808
+
809
+ window.SVGPathSegLinetoHorizontalRel.prototype._asPathString = function () {
810
+ return this.pathSegTypeAsLetter + " " + this._x;
811
+ };
812
+
813
+ window.SVGPathSegLinetoHorizontalRel.prototype.clone = function () {
814
+ return new window.SVGPathSegLinetoHorizontalRel(undefined, this._x);
815
+ };
816
+
817
+ Object.defineProperty(window.SVGPathSegLinetoHorizontalRel.prototype, "x", {
818
+ get: function () {
819
+ return this._x;
820
+ },
821
+ set: function (x) {
822
+ this._x = x;
823
+
824
+ this._segmentChanged();
825
+ },
826
+ enumerable: true
827
+ });
828
+
829
+ window.SVGPathSegLinetoVerticalAbs = function (owningPathSegList, y) {
830
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS, "V", owningPathSegList);
831
+ this._y = y;
832
+ };
833
+
834
+ window.SVGPathSegLinetoVerticalAbs.prototype = Object.create(window.SVGPathSeg.prototype);
835
+
836
+ window.SVGPathSegLinetoVerticalAbs.prototype.toString = function () {
837
+ return "[object SVGPathSegLinetoVerticalAbs]";
838
+ };
839
+
840
+ window.SVGPathSegLinetoVerticalAbs.prototype._asPathString = function () {
841
+ return this.pathSegTypeAsLetter + " " + this._y;
842
+ };
843
+
844
+ window.SVGPathSegLinetoVerticalAbs.prototype.clone = function () {
845
+ return new window.SVGPathSegLinetoVerticalAbs(undefined, this._y);
846
+ };
847
+
848
+ Object.defineProperty(window.SVGPathSegLinetoVerticalAbs.prototype, "y", {
849
+ get: function () {
850
+ return this._y;
851
+ },
852
+ set: function (y) {
853
+ this._y = y;
854
+
855
+ this._segmentChanged();
856
+ },
857
+ enumerable: true
858
+ });
859
+
860
+ window.SVGPathSegLinetoVerticalRel = function (owningPathSegList, y) {
861
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL, "v", owningPathSegList);
862
+ this._y = y;
863
+ };
864
+
865
+ window.SVGPathSegLinetoVerticalRel.prototype = Object.create(window.SVGPathSeg.prototype);
866
+
867
+ window.SVGPathSegLinetoVerticalRel.prototype.toString = function () {
868
+ return "[object SVGPathSegLinetoVerticalRel]";
869
+ };
870
+
871
+ window.SVGPathSegLinetoVerticalRel.prototype._asPathString = function () {
872
+ return this.pathSegTypeAsLetter + " " + this._y;
873
+ };
874
+
875
+ window.SVGPathSegLinetoVerticalRel.prototype.clone = function () {
876
+ return new window.SVGPathSegLinetoVerticalRel(undefined, this._y);
877
+ };
878
+
879
+ Object.defineProperty(window.SVGPathSegLinetoVerticalRel.prototype, "y", {
880
+ get: function () {
881
+ return this._y;
882
+ },
883
+ set: function (y) {
884
+ this._y = y;
885
+
886
+ this._segmentChanged();
887
+ },
888
+ enumerable: true
889
+ });
890
+
891
+ window.SVGPathSegCurvetoCubicSmoothAbs = function (owningPathSegList, x, y, x2, y2) {
892
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS, "S", owningPathSegList);
893
+ this._x = x;
894
+ this._y = y;
895
+ this._x2 = x2;
896
+ this._y2 = y2;
897
+ };
898
+
899
+ window.SVGPathSegCurvetoCubicSmoothAbs.prototype = Object.create(window.SVGPathSeg.prototype);
900
+
901
+ window.SVGPathSegCurvetoCubicSmoothAbs.prototype.toString = function () {
902
+ return "[object SVGPathSegCurvetoCubicSmoothAbs]";
903
+ };
904
+
905
+ window.SVGPathSegCurvetoCubicSmoothAbs.prototype._asPathString = function () {
906
+ return this.pathSegTypeAsLetter + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
907
+ };
908
+
909
+ window.SVGPathSegCurvetoCubicSmoothAbs.prototype.clone = function () {
910
+ return new window.SVGPathSegCurvetoCubicSmoothAbs(undefined, this._x, this._y, this._x2, this._y2);
911
+ };
912
+
913
+ Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "x", {
914
+ get: function () {
915
+ return this._x;
916
+ },
917
+ set: function (x) {
918
+ this._x = x;
919
+
920
+ this._segmentChanged();
921
+ },
922
+ enumerable: true
923
+ });
924
+ Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "y", {
925
+ get: function () {
926
+ return this._y;
927
+ },
928
+ set: function (y) {
929
+ this._y = y;
930
+
931
+ this._segmentChanged();
932
+ },
933
+ enumerable: true
934
+ });
935
+ Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "x2", {
936
+ get: function () {
937
+ return this._x2;
938
+ },
939
+ set: function (x2) {
940
+ this._x2 = x2;
941
+
942
+ this._segmentChanged();
943
+ },
944
+ enumerable: true
945
+ });
946
+ Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothAbs.prototype, "y2", {
947
+ get: function () {
948
+ return this._y2;
949
+ },
950
+ set: function (y2) {
951
+ this._y2 = y2;
952
+
953
+ this._segmentChanged();
954
+ },
955
+ enumerable: true
956
+ });
957
+
958
+ window.SVGPathSegCurvetoCubicSmoothRel = function (owningPathSegList, x, y, x2, y2) {
959
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL, "s", owningPathSegList);
960
+ this._x = x;
961
+ this._y = y;
962
+ this._x2 = x2;
963
+ this._y2 = y2;
964
+ };
965
+
966
+ window.SVGPathSegCurvetoCubicSmoothRel.prototype = Object.create(window.SVGPathSeg.prototype);
967
+
968
+ window.SVGPathSegCurvetoCubicSmoothRel.prototype.toString = function () {
969
+ return "[object SVGPathSegCurvetoCubicSmoothRel]";
970
+ };
971
+
972
+ window.SVGPathSegCurvetoCubicSmoothRel.prototype._asPathString = function () {
973
+ return this.pathSegTypeAsLetter + " " + this._x2 + " " + this._y2 + " " + this._x + " " + this._y;
974
+ };
975
+
976
+ window.SVGPathSegCurvetoCubicSmoothRel.prototype.clone = function () {
977
+ return new window.SVGPathSegCurvetoCubicSmoothRel(undefined, this._x, this._y, this._x2, this._y2);
978
+ };
979
+
980
+ Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "x", {
981
+ get: function () {
982
+ return this._x;
983
+ },
984
+ set: function (x) {
985
+ this._x = x;
986
+
987
+ this._segmentChanged();
988
+ },
989
+ enumerable: true
990
+ });
991
+ Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "y", {
992
+ get: function () {
993
+ return this._y;
994
+ },
995
+ set: function (y) {
996
+ this._y = y;
997
+
998
+ this._segmentChanged();
999
+ },
1000
+ enumerable: true
1001
+ });
1002
+ Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "x2", {
1003
+ get: function () {
1004
+ return this._x2;
1005
+ },
1006
+ set: function (x2) {
1007
+ this._x2 = x2;
1008
+
1009
+ this._segmentChanged();
1010
+ },
1011
+ enumerable: true
1012
+ });
1013
+ Object.defineProperty(window.SVGPathSegCurvetoCubicSmoothRel.prototype, "y2", {
1014
+ get: function () {
1015
+ return this._y2;
1016
+ },
1017
+ set: function (y2) {
1018
+ this._y2 = y2;
1019
+
1020
+ this._segmentChanged();
1021
+ },
1022
+ enumerable: true
1023
+ });
1024
+
1025
+ window.SVGPathSegCurvetoQuadraticSmoothAbs = function (owningPathSegList, x, y) {
1026
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS, "T", owningPathSegList);
1027
+ this._x = x;
1028
+ this._y = y;
1029
+ };
1030
+
1031
+ window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype = Object.create(window.SVGPathSeg.prototype);
1032
+
1033
+ window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.toString = function () {
1034
+ return "[object SVGPathSegCurvetoQuadraticSmoothAbs]";
1035
+ };
1036
+
1037
+ window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype._asPathString = function () {
1038
+ return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
1039
+ };
1040
+
1041
+ window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype.clone = function () {
1042
+ return new window.SVGPathSegCurvetoQuadraticSmoothAbs(undefined, this._x, this._y);
1043
+ };
1044
+
1045
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype, "x", {
1046
+ get: function () {
1047
+ return this._x;
1048
+ },
1049
+ set: function (x) {
1050
+ this._x = x;
1051
+
1052
+ this._segmentChanged();
1053
+ },
1054
+ enumerable: true
1055
+ });
1056
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothAbs.prototype, "y", {
1057
+ get: function () {
1058
+ return this._y;
1059
+ },
1060
+ set: function (y) {
1061
+ this._y = y;
1062
+
1063
+ this._segmentChanged();
1064
+ },
1065
+ enumerable: true
1066
+ });
1067
+
1068
+ window.SVGPathSegCurvetoQuadraticSmoothRel = function (owningPathSegList, x, y) {
1069
+ window.SVGPathSeg.call(this, window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL, "t", owningPathSegList);
1070
+ this._x = x;
1071
+ this._y = y;
1072
+ };
1073
+
1074
+ window.SVGPathSegCurvetoQuadraticSmoothRel.prototype = Object.create(window.SVGPathSeg.prototype);
1075
+
1076
+ window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.toString = function () {
1077
+ return "[object SVGPathSegCurvetoQuadraticSmoothRel]";
1078
+ };
1079
+
1080
+ window.SVGPathSegCurvetoQuadraticSmoothRel.prototype._asPathString = function () {
1081
+ return this.pathSegTypeAsLetter + " " + this._x + " " + this._y;
1082
+ };
1083
+
1084
+ window.SVGPathSegCurvetoQuadraticSmoothRel.prototype.clone = function () {
1085
+ return new window.SVGPathSegCurvetoQuadraticSmoothRel(undefined, this._x, this._y);
1086
+ };
1087
+
1088
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype, "x", {
1089
+ get: function () {
1090
+ return this._x;
1091
+ },
1092
+ set: function (x) {
1093
+ this._x = x;
1094
+
1095
+ this._segmentChanged();
1096
+ },
1097
+ enumerable: true
1098
+ });
1099
+ Object.defineProperty(window.SVGPathSegCurvetoQuadraticSmoothRel.prototype, "y", {
1100
+ get: function () {
1101
+ return this._y;
1102
+ },
1103
+ set: function (y) {
1104
+ this._y = y;
1105
+
1106
+ this._segmentChanged();
1107
+ },
1108
+ enumerable: true
1109
+ });
1110
+
1111
+ window.SVGPathElement.prototype.createSVGPathSegClosePath = function () {
1112
+ return new window.SVGPathSegClosePath(undefined);
1113
+ };
1114
+
1115
+ window.SVGPathElement.prototype.createSVGPathSegMovetoAbs = function (x, y) {
1116
+ return new window.SVGPathSegMovetoAbs(undefined, x, y);
1117
+ };
1118
+
1119
+ window.SVGPathElement.prototype.createSVGPathSegMovetoRel = function (x, y) {
1120
+ return new window.SVGPathSegMovetoRel(undefined, x, y);
1121
+ };
1122
+
1123
+ window.SVGPathElement.prototype.createSVGPathSegLinetoAbs = function (x, y) {
1124
+ return new window.SVGPathSegLinetoAbs(undefined, x, y);
1125
+ };
1126
+
1127
+ window.SVGPathElement.prototype.createSVGPathSegLinetoRel = function (x, y) {
1128
+ return new window.SVGPathSegLinetoRel(undefined, x, y);
1129
+ };
1130
+
1131
+ window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicAbs = function (x, y, x1, y1, x2, y2) {
1132
+ return new window.SVGPathSegCurvetoCubicAbs(undefined, x, y, x1, y1, x2, y2);
1133
+ };
1134
+
1135
+ window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicRel = function (x, y, x1, y1, x2, y2) {
1136
+ return new window.SVGPathSegCurvetoCubicRel(undefined, x, y, x1, y1, x2, y2);
1137
+ };
1138
+
1139
+ window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticAbs = function (x, y, x1, y1) {
1140
+ return new window.SVGPathSegCurvetoQuadraticAbs(undefined, x, y, x1, y1);
1141
+ };
1142
+
1143
+ window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticRel = function (x, y, x1, y1) {
1144
+ return new window.SVGPathSegCurvetoQuadraticRel(undefined, x, y, x1, y1);
1145
+ };
1146
+
1147
+ window.SVGPathElement.prototype.createSVGPathSegArcAbs = function (x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
1148
+ return new window.SVGPathSegArcAbs(undefined, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
1149
+ };
1150
+
1151
+ window.SVGPathElement.prototype.createSVGPathSegArcRel = function (x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
1152
+ return new window.SVGPathSegArcRel(undefined, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
1153
+ };
1154
+
1155
+ window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalAbs = function (x) {
1156
+ return new window.SVGPathSegLinetoHorizontalAbs(undefined, x);
1157
+ };
1158
+
1159
+ window.SVGPathElement.prototype.createSVGPathSegLinetoHorizontalRel = function (x) {
1160
+ return new window.SVGPathSegLinetoHorizontalRel(undefined, x);
1161
+ };
1162
+
1163
+ window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalAbs = function (y) {
1164
+ return new window.SVGPathSegLinetoVerticalAbs(undefined, y);
1165
+ };
1166
+
1167
+ window.SVGPathElement.prototype.createSVGPathSegLinetoVerticalRel = function (y) {
1168
+ return new window.SVGPathSegLinetoVerticalRel(undefined, y);
1169
+ };
1170
+
1171
+ window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothAbs = function (x, y, x2, y2) {
1172
+ return new window.SVGPathSegCurvetoCubicSmoothAbs(undefined, x, y, x2, y2);
1173
+ };
1174
+
1175
+ window.SVGPathElement.prototype.createSVGPathSegCurvetoCubicSmoothRel = function (x, y, x2, y2) {
1176
+ return new window.SVGPathSegCurvetoCubicSmoothRel(undefined, x, y, x2, y2);
1177
+ };
1178
+
1179
+ window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothAbs = function (x, y) {
1180
+ return new window.SVGPathSegCurvetoQuadraticSmoothAbs(undefined, x, y);
1181
+ };
1182
+
1183
+ window.SVGPathElement.prototype.createSVGPathSegCurvetoQuadraticSmoothRel = function (x, y) {
1184
+ return new window.SVGPathSegCurvetoQuadraticSmoothRel(undefined, x, y);
1185
+ };
1186
+
1187
+ if (!("getPathSegAtLength" in window.SVGPathElement.prototype)) {
1188
+ window.SVGPathElement.prototype.getPathSegAtLength = function (distance) {
1189
+ if (distance === undefined || !isFinite(distance)) throw "Invalid arguments.";
1190
+ var measurementElement = document.createElementNS("http://www.w3.org/2000/svg", "path");
1191
+ measurementElement.setAttribute("d", this.getAttribute("d"));
1192
+ var lastPathSegment = measurementElement.pathSegList.numberOfItems - 1;
1193
+ if (lastPathSegment <= 0) return 0;
1194
+
1195
+ do {
1196
+ measurementElement.pathSegList.removeItem(lastPathSegment);
1197
+ if (distance > measurementElement.getTotalLength()) break;
1198
+ lastPathSegment--;
1199
+ } while (lastPathSegment > 0);
1200
+
1201
+ return lastPathSegment;
1202
+ };
1203
+ }
1204
+ }
1205
+
1206
+ if (!("SVGPathSegList" in window) || !("appendItem" in window.SVGPathSegList.prototype)) {
1207
+ window.SVGPathSegList = function (pathElement) {
1208
+ this._pathElement = pathElement;
1209
+ this._list = this._parsePath(this._pathElement.getAttribute("d"));
1210
+ this._mutationObserverConfig = {
1211
+ attributes: true,
1212
+ attributeFilter: ["d"]
1213
+ };
1214
+ this._pathElementMutationObserver = new MutationObserver(this._updateListFromPathMutations.bind(this));
1215
+
1216
+ this._pathElementMutationObserver.observe(this._pathElement, this._mutationObserverConfig);
1217
+ };
1218
+
1219
+ window.SVGPathSegList.prototype.classname = "SVGPathSegList";
1220
+ Object.defineProperty(window.SVGPathSegList.prototype, "numberOfItems", {
1221
+ get: function () {
1222
+ this._checkPathSynchronizedToList();
1223
+
1224
+ return this._list.length;
1225
+ },
1226
+ enumerable: true
1227
+ });
1228
+ Object.defineProperty(window.SVGPathSegList.prototype, "length", {
1229
+ get: function () {
1230
+ this._checkPathSynchronizedToList();
1231
+
1232
+ return this._list.length;
1233
+ },
1234
+ enumerable: true
1235
+ });
1236
+ Object.defineProperty(window.SVGPathElement.prototype, "pathSegList", {
1237
+ get: function () {
1238
+ if (!this._pathSegList) this._pathSegList = new window.SVGPathSegList(this);
1239
+ return this._pathSegList;
1240
+ },
1241
+ enumerable: true
1242
+ });
1243
+ Object.defineProperty(window.SVGPathElement.prototype, "normalizedPathSegList", {
1244
+ get: function () {
1245
+ return this.pathSegList;
1246
+ },
1247
+ enumerable: true
1248
+ });
1249
+ Object.defineProperty(window.SVGPathElement.prototype, "animatedPathSegList", {
1250
+ get: function () {
1251
+ return this.pathSegList;
1252
+ },
1253
+ enumerable: true
1254
+ });
1255
+ Object.defineProperty(window.SVGPathElement.prototype, "animatedNormalizedPathSegList", {
1256
+ get: function () {
1257
+ return this.pathSegList;
1258
+ },
1259
+ enumerable: true
1260
+ });
1261
+
1262
+ window.SVGPathSegList.prototype._checkPathSynchronizedToList = function () {
1263
+ this._updateListFromPathMutations(this._pathElementMutationObserver.takeRecords());
1264
+ };
1265
+
1266
+ window.SVGPathSegList.prototype._updateListFromPathMutations = function (mutationRecords) {
1267
+ if (!this._pathElement) return;
1268
+ var hasPathMutations = false;
1269
+ mutationRecords.forEach(function (record) {
1270
+ if (record.attributeName == "d") hasPathMutations = true;
1271
+ });
1272
+ if (hasPathMutations) this._list = this._parsePath(this._pathElement.getAttribute("d"));
1273
+ };
1274
+
1275
+ window.SVGPathSegList.prototype._writeListToPath = function () {
1276
+ this._pathElementMutationObserver.disconnect();
1277
+
1278
+ this._pathElement.setAttribute("d", window.SVGPathSegList._pathSegArrayAsString(this._list));
1279
+
1280
+ this._pathElementMutationObserver.observe(this._pathElement, this._mutationObserverConfig);
1281
+ };
1282
+
1283
+ window.SVGPathSegList.prototype.segmentChanged = function (pathSeg) {
1284
+ this._writeListToPath();
1285
+ };
1286
+
1287
+ window.SVGPathSegList.prototype.clear = function () {
1288
+ this._checkPathSynchronizedToList();
1289
+
1290
+ this._list.forEach(function (pathSeg) {
1291
+ pathSeg._owningPathSegList = null;
1292
+ });
1293
+
1294
+ this._list = [];
1295
+
1296
+ this._writeListToPath();
1297
+ };
1298
+
1299
+ window.SVGPathSegList.prototype.initialize = function (newItem) {
1300
+ this._checkPathSynchronizedToList();
1301
+
1302
+ this._list = [newItem];
1303
+ newItem._owningPathSegList = this;
1304
+
1305
+ this._writeListToPath();
1306
+
1307
+ return newItem;
1308
+ };
1309
+
1310
+ window.SVGPathSegList.prototype._checkValidIndex = function (index) {
1311
+ if (isNaN(index) || index < 0 || index >= this.numberOfItems) throw "INDEX_SIZE_ERR";
1312
+ };
1313
+
1314
+ window.SVGPathSegList.prototype.getItem = function (index) {
1315
+ this._checkPathSynchronizedToList();
1316
+
1317
+ this._checkValidIndex(index);
1318
+
1319
+ return this._list[index];
1320
+ };
1321
+
1322
+ window.SVGPathSegList.prototype.insertItemBefore = function (newItem, index) {
1323
+ this._checkPathSynchronizedToList();
1324
+
1325
+ if (index > this.numberOfItems) index = this.numberOfItems;
1326
+
1327
+ if (newItem._owningPathSegList) {
1328
+ newItem = newItem.clone();
1329
+ }
1330
+
1331
+ this._list.splice(index, 0, newItem);
1332
+
1333
+ newItem._owningPathSegList = this;
1334
+
1335
+ this._writeListToPath();
1336
+
1337
+ return newItem;
1338
+ };
1339
+
1340
+ window.SVGPathSegList.prototype.replaceItem = function (newItem, index) {
1341
+ this._checkPathSynchronizedToList();
1342
+
1343
+ if (newItem._owningPathSegList) {
1344
+ newItem = newItem.clone();
1345
+ }
1346
+
1347
+ this._checkValidIndex(index);
1348
+
1349
+ this._list[index] = newItem;
1350
+ newItem._owningPathSegList = this;
1351
+
1352
+ this._writeListToPath();
1353
+
1354
+ return newItem;
1355
+ };
1356
+
1357
+ window.SVGPathSegList.prototype.removeItem = function (index) {
1358
+ this._checkPathSynchronizedToList();
1359
+
1360
+ this._checkValidIndex(index);
1361
+
1362
+ var item = this._list[index];
1363
+
1364
+ this._list.splice(index, 1);
1365
+
1366
+ this._writeListToPath();
1367
+
1368
+ return item;
1369
+ };
1370
+
1371
+ window.SVGPathSegList.prototype.appendItem = function (newItem) {
1372
+ this._checkPathSynchronizedToList();
1373
+
1374
+ if (newItem._owningPathSegList) {
1375
+ newItem = newItem.clone();
1376
+ }
1377
+
1378
+ this._list.push(newItem);
1379
+
1380
+ newItem._owningPathSegList = this;
1381
+
1382
+ this._writeListToPath();
1383
+
1384
+ return newItem;
1385
+ };
1386
+
1387
+ window.SVGPathSegList._pathSegArrayAsString = function (pathSegArray) {
1388
+ var string = "";
1389
+ var first = true;
1390
+ pathSegArray.forEach(function (pathSeg) {
1391
+ if (first) {
1392
+ first = false;
1393
+ string += pathSeg._asPathString();
1394
+ } else {
1395
+ string += " " + pathSeg._asPathString();
1396
+ }
1397
+ });
1398
+ return string;
1399
+ };
1400
+
1401
+ window.SVGPathSegList.prototype._parsePath = function (string) {
1402
+ if (!string || string.length == 0) return [];
1403
+ var owningPathSegList = this;
1404
+
1405
+ var Builder = function () {
1406
+ this.pathSegList = [];
1407
+ };
1408
+
1409
+ Builder.prototype.appendSegment = function (pathSeg) {
1410
+ this.pathSegList.push(pathSeg);
1411
+ };
1412
+
1413
+ var Source = function (string) {
1414
+ this._string = string;
1415
+ this._currentIndex = 0;
1416
+ this._endIndex = this._string.length;
1417
+ this._previousCommand = window.SVGPathSeg.PATHSEG_UNKNOWN;
1418
+
1419
+ this._skipOptionalSpaces();
1420
+ };
1421
+
1422
+ Source.prototype._isCurrentSpace = function () {
1423
+ var character = this._string[this._currentIndex];
1424
+ return character <= " " && (character == " " || character == "\n" || character == "\t" || character == "\r" || character == "\f");
1425
+ };
1426
+
1427
+ Source.prototype._skipOptionalSpaces = function () {
1428
+ while (this._currentIndex < this._endIndex && this._isCurrentSpace()) this._currentIndex++;
1429
+
1430
+ return this._currentIndex < this._endIndex;
1431
+ };
1432
+
1433
+ Source.prototype._skipOptionalSpacesOrDelimiter = function () {
1434
+ if (this._currentIndex < this._endIndex && !this._isCurrentSpace() && this._string.charAt(this._currentIndex) != ",") return false;
1435
+
1436
+ if (this._skipOptionalSpaces()) {
1437
+ if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == ",") {
1438
+ this._currentIndex++;
1439
+
1440
+ this._skipOptionalSpaces();
1441
+ }
1442
+ }
1443
+
1444
+ return this._currentIndex < this._endIndex;
1445
+ };
1446
+
1447
+ Source.prototype.hasMoreData = function () {
1448
+ return this._currentIndex < this._endIndex;
1449
+ };
1450
+
1451
+ Source.prototype.peekSegmentType = function () {
1452
+ var lookahead = this._string[this._currentIndex];
1453
+ return this._pathSegTypeFromChar(lookahead);
1454
+ };
1455
+
1456
+ Source.prototype._pathSegTypeFromChar = function (lookahead) {
1457
+ switch (lookahead) {
1458
+ case "Z":
1459
+ case "z":
1460
+ return window.SVGPathSeg.PATHSEG_CLOSEPATH;
1461
+
1462
+ case "M":
1463
+ return window.SVGPathSeg.PATHSEG_MOVETO_ABS;
1464
+
1465
+ case "m":
1466
+ return window.SVGPathSeg.PATHSEG_MOVETO_REL;
1467
+
1468
+ case "L":
1469
+ return window.SVGPathSeg.PATHSEG_LINETO_ABS;
1470
+
1471
+ case "l":
1472
+ return window.SVGPathSeg.PATHSEG_LINETO_REL;
1473
+
1474
+ case "C":
1475
+ return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS;
1476
+
1477
+ case "c":
1478
+ return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL;
1479
+
1480
+ case "Q":
1481
+ return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS;
1482
+
1483
+ case "q":
1484
+ return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL;
1485
+
1486
+ case "A":
1487
+ return window.SVGPathSeg.PATHSEG_ARC_ABS;
1488
+
1489
+ case "a":
1490
+ return window.SVGPathSeg.PATHSEG_ARC_REL;
1491
+
1492
+ case "H":
1493
+ return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS;
1494
+
1495
+ case "h":
1496
+ return window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL;
1497
+
1498
+ case "V":
1499
+ return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS;
1500
+
1501
+ case "v":
1502
+ return window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL;
1503
+
1504
+ case "S":
1505
+ return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS;
1506
+
1507
+ case "s":
1508
+ return window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL;
1509
+
1510
+ case "T":
1511
+ return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS;
1512
+
1513
+ case "t":
1514
+ return window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL;
1515
+
1516
+ default:
1517
+ return window.SVGPathSeg.PATHSEG_UNKNOWN;
1518
+ }
1519
+ };
1520
+
1521
+ Source.prototype._nextCommandHelper = function (lookahead, previousCommand) {
1522
+ if ((lookahead == "+" || lookahead == "-" || lookahead == "." || lookahead >= "0" && lookahead <= "9") && previousCommand != window.SVGPathSeg.PATHSEG_CLOSEPATH) {
1523
+ if (previousCommand == window.SVGPathSeg.PATHSEG_MOVETO_ABS) return window.SVGPathSeg.PATHSEG_LINETO_ABS;
1524
+ if (previousCommand == window.SVGPathSeg.PATHSEG_MOVETO_REL) return window.SVGPathSeg.PATHSEG_LINETO_REL;
1525
+ return previousCommand;
1526
+ }
1527
+
1528
+ return window.SVGPathSeg.PATHSEG_UNKNOWN;
1529
+ };
1530
+
1531
+ Source.prototype.initialCommandIsMoveTo = function () {
1532
+ if (!this.hasMoreData()) return true;
1533
+ var command = this.peekSegmentType();
1534
+ return command == window.SVGPathSeg.PATHSEG_MOVETO_ABS || command == window.SVGPathSeg.PATHSEG_MOVETO_REL;
1535
+ };
1536
+
1537
+ Source.prototype._parseNumber = function () {
1538
+ var exponent = 0;
1539
+ var integer = 0;
1540
+ var frac = 1;
1541
+ var decimal = 0;
1542
+ var sign = 1;
1543
+ var expsign = 1;
1544
+ var startIndex = this._currentIndex;
1545
+
1546
+ this._skipOptionalSpaces();
1547
+
1548
+ if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == "+") this._currentIndex++;else if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == "-") {
1549
+ this._currentIndex++;
1550
+ sign = -1;
1551
+ }
1552
+ if (this._currentIndex == this._endIndex || (this._string.charAt(this._currentIndex) < "0" || this._string.charAt(this._currentIndex) > "9") && this._string.charAt(this._currentIndex) != ".") return undefined;
1553
+ var startIntPartIndex = this._currentIndex;
1554
+
1555
+ while (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) >= "0" && this._string.charAt(this._currentIndex) <= "9") this._currentIndex++;
1556
+
1557
+ if (this._currentIndex != startIntPartIndex) {
1558
+ var scanIntPartIndex = this._currentIndex - 1;
1559
+ var multiplier = 1;
1560
+
1561
+ while (scanIntPartIndex >= startIntPartIndex) {
1562
+ integer += multiplier * (this._string.charAt(scanIntPartIndex--) - "0");
1563
+ multiplier *= 10;
1564
+ }
1565
+ }
1566
+
1567
+ if (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) == ".") {
1568
+ this._currentIndex++;
1569
+ if (this._currentIndex >= this._endIndex || this._string.charAt(this._currentIndex) < "0" || this._string.charAt(this._currentIndex) > "9") return undefined;
1570
+
1571
+ while (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) >= "0" && this._string.charAt(this._currentIndex) <= "9") {
1572
+ frac *= 10;
1573
+ decimal += (this._string.charAt(this._currentIndex) - "0") / frac;
1574
+ this._currentIndex += 1;
1575
+ }
1576
+ }
1577
+
1578
+ if (this._currentIndex != startIndex && this._currentIndex + 1 < this._endIndex && (this._string.charAt(this._currentIndex) == "e" || this._string.charAt(this._currentIndex) == "E") && this._string.charAt(this._currentIndex + 1) != "x" && this._string.charAt(this._currentIndex + 1) != "m") {
1579
+ this._currentIndex++;
1580
+
1581
+ if (this._string.charAt(this._currentIndex) == "+") {
1582
+ this._currentIndex++;
1583
+ } else if (this._string.charAt(this._currentIndex) == "-") {
1584
+ this._currentIndex++;
1585
+ expsign = -1;
1586
+ }
1587
+
1588
+ if (this._currentIndex >= this._endIndex || this._string.charAt(this._currentIndex) < "0" || this._string.charAt(this._currentIndex) > "9") return undefined;
1589
+
1590
+ while (this._currentIndex < this._endIndex && this._string.charAt(this._currentIndex) >= "0" && this._string.charAt(this._currentIndex) <= "9") {
1591
+ exponent *= 10;
1592
+ exponent += this._string.charAt(this._currentIndex) - "0";
1593
+ this._currentIndex++;
1594
+ }
1595
+ }
1596
+
1597
+ var number = integer + decimal;
1598
+ number *= sign;
1599
+ if (exponent) number *= Math.pow(10, expsign * exponent);
1600
+ if (startIndex == this._currentIndex) return undefined;
1601
+
1602
+ this._skipOptionalSpacesOrDelimiter();
1603
+
1604
+ return number;
1605
+ };
1606
+
1607
+ Source.prototype._parseArcFlag = function () {
1608
+ if (this._currentIndex >= this._endIndex) return undefined;
1609
+ var flag = false;
1610
+
1611
+ var flagChar = this._string.charAt(this._currentIndex++);
1612
+
1613
+ if (flagChar == "0") flag = false;else if (flagChar == "1") flag = true;else return undefined;
1614
+
1615
+ this._skipOptionalSpacesOrDelimiter();
1616
+
1617
+ return flag;
1618
+ };
1619
+
1620
+ Source.prototype.parseSegment = function () {
1621
+ var lookahead = this._string[this._currentIndex];
1622
+
1623
+ var command = this._pathSegTypeFromChar(lookahead);
1624
+
1625
+ if (command == window.SVGPathSeg.PATHSEG_UNKNOWN) {
1626
+ if (this._previousCommand == window.SVGPathSeg.PATHSEG_UNKNOWN) return null;
1627
+ command = this._nextCommandHelper(lookahead, this._previousCommand);
1628
+ if (command == window.SVGPathSeg.PATHSEG_UNKNOWN) return null;
1629
+ } else {
1630
+ this._currentIndex++;
1631
+ }
1632
+
1633
+ this._previousCommand = command;
1634
+
1635
+ switch (command) {
1636
+ case window.SVGPathSeg.PATHSEG_MOVETO_REL:
1637
+ return new window.SVGPathSegMovetoRel(owningPathSegList, this._parseNumber(), this._parseNumber());
1638
+
1639
+ case window.SVGPathSeg.PATHSEG_MOVETO_ABS:
1640
+ return new window.SVGPathSegMovetoAbs(owningPathSegList, this._parseNumber(), this._parseNumber());
1641
+
1642
+ case window.SVGPathSeg.PATHSEG_LINETO_REL:
1643
+ return new window.SVGPathSegLinetoRel(owningPathSegList, this._parseNumber(), this._parseNumber());
1644
+
1645
+ case window.SVGPathSeg.PATHSEG_LINETO_ABS:
1646
+ return new window.SVGPathSegLinetoAbs(owningPathSegList, this._parseNumber(), this._parseNumber());
1647
+
1648
+ case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL:
1649
+ return new window.SVGPathSegLinetoHorizontalRel(owningPathSegList, this._parseNumber());
1650
+
1651
+ case window.SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS:
1652
+ return new window.SVGPathSegLinetoHorizontalAbs(owningPathSegList, this._parseNumber());
1653
+
1654
+ case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL:
1655
+ return new window.SVGPathSegLinetoVerticalRel(owningPathSegList, this._parseNumber());
1656
+
1657
+ case window.SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS:
1658
+ return new window.SVGPathSegLinetoVerticalAbs(owningPathSegList, this._parseNumber());
1659
+
1660
+ case window.SVGPathSeg.PATHSEG_CLOSEPATH:
1661
+ this._skipOptionalSpaces();
1662
+
1663
+ return new window.SVGPathSegClosePath(owningPathSegList);
1664
+
1665
+ case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL:
1666
+ var points = {
1667
+ x1: this._parseNumber(),
1668
+ y1: this._parseNumber(),
1669
+ x2: this._parseNumber(),
1670
+ y2: this._parseNumber(),
1671
+ x: this._parseNumber(),
1672
+ y: this._parseNumber()
1673
+ };
1674
+ return new window.SVGPathSegCurvetoCubicRel(owningPathSegList, points.x, points.y, points.x1, points.y1, points.x2, points.y2);
1675
+
1676
+ case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS:
1677
+ var points = {
1678
+ x1: this._parseNumber(),
1679
+ y1: this._parseNumber(),
1680
+ x2: this._parseNumber(),
1681
+ y2: this._parseNumber(),
1682
+ x: this._parseNumber(),
1683
+ y: this._parseNumber()
1684
+ };
1685
+ return new window.SVGPathSegCurvetoCubicAbs(owningPathSegList, points.x, points.y, points.x1, points.y1, points.x2, points.y2);
1686
+
1687
+ case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL:
1688
+ var points = {
1689
+ x2: this._parseNumber(),
1690
+ y2: this._parseNumber(),
1691
+ x: this._parseNumber(),
1692
+ y: this._parseNumber()
1693
+ };
1694
+ return new window.SVGPathSegCurvetoCubicSmoothRel(owningPathSegList, points.x, points.y, points.x2, points.y2);
1695
+
1696
+ case window.SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS:
1697
+ var points = {
1698
+ x2: this._parseNumber(),
1699
+ y2: this._parseNumber(),
1700
+ x: this._parseNumber(),
1701
+ y: this._parseNumber()
1702
+ };
1703
+ return new window.SVGPathSegCurvetoCubicSmoothAbs(owningPathSegList, points.x, points.y, points.x2, points.y2);
1704
+
1705
+ case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL:
1706
+ var points = {
1707
+ x1: this._parseNumber(),
1708
+ y1: this._parseNumber(),
1709
+ x: this._parseNumber(),
1710
+ y: this._parseNumber()
1711
+ };
1712
+ return new window.SVGPathSegCurvetoQuadraticRel(owningPathSegList, points.x, points.y, points.x1, points.y1);
1713
+
1714
+ case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS:
1715
+ var points = {
1716
+ x1: this._parseNumber(),
1717
+ y1: this._parseNumber(),
1718
+ x: this._parseNumber(),
1719
+ y: this._parseNumber()
1720
+ };
1721
+ return new window.SVGPathSegCurvetoQuadraticAbs(owningPathSegList, points.x, points.y, points.x1, points.y1);
1722
+
1723
+ case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL:
1724
+ return new window.SVGPathSegCurvetoQuadraticSmoothRel(owningPathSegList, this._parseNumber(), this._parseNumber());
1725
+
1726
+ case window.SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS:
1727
+ return new window.SVGPathSegCurvetoQuadraticSmoothAbs(owningPathSegList, this._parseNumber(), this._parseNumber());
1728
+
1729
+ case window.SVGPathSeg.PATHSEG_ARC_REL:
1730
+ var points = {
1731
+ x1: this._parseNumber(),
1732
+ y1: this._parseNumber(),
1733
+ arcAngle: this._parseNumber(),
1734
+ arcLarge: this._parseArcFlag(),
1735
+ arcSweep: this._parseArcFlag(),
1736
+ x: this._parseNumber(),
1737
+ y: this._parseNumber()
1738
+ };
1739
+ return new window.SVGPathSegArcRel(owningPathSegList, points.x, points.y, points.x1, points.y1, points.arcAngle, points.arcLarge, points.arcSweep);
1740
+
1741
+ case window.SVGPathSeg.PATHSEG_ARC_ABS:
1742
+ var points = {
1743
+ x1: this._parseNumber(),
1744
+ y1: this._parseNumber(),
1745
+ arcAngle: this._parseNumber(),
1746
+ arcLarge: this._parseArcFlag(),
1747
+ arcSweep: this._parseArcFlag(),
1748
+ x: this._parseNumber(),
1749
+ y: this._parseNumber()
1750
+ };
1751
+ return new window.SVGPathSegArcAbs(owningPathSegList, points.x, points.y, points.x1, points.y1, points.arcAngle, points.arcLarge, points.arcSweep);
1752
+
1753
+ default:
1754
+ throw "Unknown path seg type.";
1755
+ }
1756
+ };
1757
+
1758
+ var builder = new Builder();
1759
+ var source = new Source(string);
1760
+ if (!source.initialCommandIsMoveTo()) return [];
1761
+
1762
+ while (source.hasMoreData()) {
1763
+ var pathSeg = source.parseSegment();
1764
+ if (!pathSeg) return [];
1765
+ builder.appendSegment(pathSeg);
1766
+ }
1767
+
1768
+ return builder.pathSegList;
1769
+ };
1770
+ }
1771
+ })();
1772
+
1773
+ /***/ })
1774
+
1775
+ }]);