@rbxts/humanoid-stat-manager 1.0.13 → 1.0.15

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/index.d.ts CHANGED
@@ -1 +1,2 @@
1
- export {};
1
+ import './client';
2
+ import './server';
package/out/init.luau CHANGED
@@ -1,7 +1,5 @@
1
1
  -- Compiled with roblox-ts v3.0.0
2
2
  local TS = _G[script]
3
- local dummy1 = TS.import(script, script, "client").HumanoidStatManager
4
- local dummy2 = TS.import(script, script, "server").HumanoidStatManager
5
- local _ = dummy1
6
- local _1 = dummy2
3
+ TS.import(script, script, "client")
4
+ TS.import(script, script, "server")
7
5
  return nil
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@rbxts/humanoid-stat-manager",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "",
5
- "main": "out/server.lua",
5
+ "main": "out/init.lua",
6
6
  "scripts": {
7
7
  "build": "rbxtsc",
8
8
  "watch": "rbxtsc -w",