@rbxts/humanoid-stat-manager 1.0.17 → 1.0.18
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 +6 -1
- package/out/init.luau +14 -1
- package/package.json +2 -2
- package/out/types.d.ts +0 -2
package/out/index.d.ts
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { HumanoidStatManager as HumanoidStatManagerClient } from './client';
|
|
2
|
+
import { HumanoidStatManager as HumanoidStatManagerServer } from './server';
|
|
3
|
+
export declare namespace HumanoidStatManager {
|
|
4
|
+
export import Server = HumanoidStatManagerServer;
|
|
5
|
+
export import Client = HumanoidStatManagerClient;
|
|
6
|
+
}
|
package/out/init.luau
CHANGED
|
@@ -1,2 +1,15 @@
|
|
|
1
1
|
-- Compiled with roblox-ts v3.0.0
|
|
2
|
-
|
|
2
|
+
local TS = _G[script]
|
|
3
|
+
local HumanoidStatManagerClient = TS.import(script, script, "client").HumanoidStatManager
|
|
4
|
+
local HumanoidStatManagerServer = TS.import(script, script, "server").HumanoidStatManager
|
|
5
|
+
local HumanoidStatManager = {}
|
|
6
|
+
do
|
|
7
|
+
local _container = HumanoidStatManager
|
|
8
|
+
local Server = HumanoidStatManagerServer
|
|
9
|
+
_container.Server = Server
|
|
10
|
+
local Client = HumanoidStatManagerClient
|
|
11
|
+
_container.Client = Client
|
|
12
|
+
end
|
|
13
|
+
return {
|
|
14
|
+
HumanoidStatManager = HumanoidStatManager,
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rbxts/humanoid-stat-manager",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "out/init.lua",
|
|
6
6
|
"scripts": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"author": "CriShoux",
|
|
13
13
|
"license": "ISC",
|
|
14
14
|
"type": "commonjs",
|
|
15
|
-
"types": "out/
|
|
15
|
+
"types": "out/index.d.ts",
|
|
16
16
|
"files": [
|
|
17
17
|
"out",
|
|
18
18
|
"!**/*.tsbuildinfo"
|
package/out/types.d.ts
DELETED