@rbxts/humanoid-stat-manager 1.0.24 → 1.0.25
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 +1 -5
- package/out/client.luau +1 -0
- package/out/index.d.ts +4 -4
- package/out/init.luau +4 -4
- package/out/server.d.ts +1 -5
- package/out/server.luau +1 -0
- package/package.json +1 -1
package/out/client.d.ts
CHANGED
package/out/client.luau
CHANGED
package/out/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { HumanoidStatManager as HumanoidStatManagerServer } from './server';
|
|
2
|
+
import { HumanoidStatManager as HumanoidStatManagerClient } from './client';
|
|
1
3
|
export declare namespace HumanoidStatManager {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const Client: ClientImpl;
|
|
5
|
-
const Server: ServerImpl;
|
|
4
|
+
const Server: typeof HumanoidStatManagerServer;
|
|
5
|
+
const Client: typeof HumanoidStatManagerClient;
|
|
6
6
|
}
|
package/out/init.luau
CHANGED
|
@@ -4,14 +4,14 @@ local RunService = game:GetService("RunService")
|
|
|
4
4
|
local HumanoidStatManager = {}
|
|
5
5
|
do
|
|
6
6
|
local _container = HumanoidStatManager
|
|
7
|
-
local Client = if RunService:IsClient() then TS.Promise.new(function(resolve)
|
|
8
|
-
resolve(TS.import(script, script, "client"))
|
|
9
|
-
end):expect().HumanoidStatManager else nil
|
|
10
|
-
_container.Client = Client
|
|
11
7
|
local Server = if RunService:IsServer() then TS.Promise.new(function(resolve)
|
|
12
8
|
resolve(TS.import(script, script, "server"))
|
|
13
9
|
end):expect().HumanoidStatManager else nil
|
|
14
10
|
_container.Server = Server
|
|
11
|
+
local Client = if RunService:IsClient() then TS.Promise.new(function(resolve)
|
|
12
|
+
resolve(TS.import(script, script, "client"))
|
|
13
|
+
end):expect().HumanoidStatManager else nil
|
|
14
|
+
_container.Client = Client
|
|
15
15
|
end
|
|
16
16
|
return {
|
|
17
17
|
HumanoidStatManager = HumanoidStatManager,
|
package/out/server.d.ts
CHANGED
package/out/server.luau
CHANGED