@rbxts/humanoid-stat-manager 1.0.26 → 1.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/out/client.d.ts CHANGED
@@ -1 +1,5 @@
1
- export {};
1
+ import { Modifier } from './shared';
2
+ export declare namespace HumanoidStatManagerClient {
3
+ function init(): void;
4
+ function addModifier(modifier: Omit<Modifier, 'startTime'>): () => void;
5
+ }
package/out/client.luau CHANGED
@@ -50,7 +50,6 @@ observeCharacters(function(char, player)
50
50
  end
51
51
  end)
52
52
  RunService.Heartbeat:Connect(update)
53
- --* @internal
54
53
  local HumanoidStatManagerClient = {}
55
54
  do
56
55
  local _container = HumanoidStatManagerClient
package/out/server.d.ts CHANGED
@@ -1 +1,5 @@
1
- export {};
1
+ import { Modifier } from './shared';
2
+ export declare namespace HumanoidStatManagerServer {
3
+ function init(): void;
4
+ function addModifier(char: Model, modifier: Omit<Modifier, 'id' | 'startTime'>): () => void;
5
+ }
package/out/server.luau CHANGED
@@ -30,7 +30,6 @@ RunService.Heartbeat:Connect(function()
30
30
  humanoid.JumpHeight = calculateStat("JumpHeight", modifiers)
31
31
  end
32
32
  end)
33
- --* @internal
34
33
  local HumanoidStatManagerServer = {}
35
34
  do
36
35
  local _container = HumanoidStatManagerServer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/humanoid-stat-manager",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "",
5
5
  "main": "out/init.lua",
6
6
  "scripts": {