@rbxts/humanoid-stat-manager 1.0.23 → 1.0.24

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,6 +1,6 @@
1
1
  export declare namespace HumanoidStatManager {
2
- type ClientImpl = typeof import("./client")["HumanoidStatManager"];
3
- type ServerImpl = typeof import("./server")["HumanoidStatManager"];
2
+ type ClientImpl = typeof import('./client')['HumanoidStatManager'];
3
+ type ServerImpl = typeof import('./server')['HumanoidStatManager'];
4
4
  const Client: ClientImpl;
5
5
  const Server: ServerImpl;
6
6
  }
package/out/init.luau CHANGED
@@ -1,12 +1,9 @@
1
1
  -- Compiled with roblox-ts v3.0.0
2
2
  local TS = _G[script]
3
- -- import { HumanoidStatManager as HumanoidStatManagerClient } from './client';
4
- -- import { HumanoidStatManager as HumanoidStatManagerServer } from './server';
5
3
  local RunService = game:GetService("RunService")
6
4
  local HumanoidStatManager = {}
7
5
  do
8
6
  local _container = HumanoidStatManager
9
- -- Types (type-only, no runtime import):
10
7
  local Client = if RunService:IsClient() then TS.Promise.new(function(resolve)
11
8
  resolve(TS.import(script, script, "client"))
12
9
  end):expect().HumanoidStatManager else nil
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/humanoid-stat-manager",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "",
5
5
  "main": "out/init.lua",
6
6
  "scripts": {