@rbxts/humanoid-stat-manager 1.0.28 → 1.0.29
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 +3 -7
- package/out/init.luau +10 -8
- package/package.json +1 -1
package/out/index.d.ts
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
HumanoidStatManagerServer: typeof import("./server") | typeof HumanoidStatManagerServer;
|
|
5
|
-
HumanoidStatManagerClient: typeof import("./client") | typeof HumanoidStatManagerClient;
|
|
6
|
-
};
|
|
7
|
-
export = _default;
|
|
1
|
+
type MergedExports = typeof import('./server') & typeof import('./client');
|
|
2
|
+
declare const res: MergedExports;
|
|
3
|
+
export = res;
|
package/out/init.luau
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
-- Compiled with roblox-ts v3.0.0
|
|
2
2
|
local TS = _G[script]
|
|
3
3
|
local RunService = game:GetService("RunService")
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
local res = {}
|
|
5
|
+
local currentModule = if RunService:IsServer() then TS.Promise.new(function(resolve)
|
|
6
|
+
resolve(TS.import(script, script, "server"))
|
|
7
|
+
end):expect() else TS.Promise.new(function(resolve)
|
|
8
|
+
resolve(TS.import(script, script, "client"))
|
|
9
|
+
end):expect()
|
|
10
|
+
for i, v in pairs(currentModule) do
|
|
11
|
+
res[i] = v
|
|
12
|
+
end
|
|
13
|
+
return res
|