@nativewrappers/common 0.0.82 → 0.0.83
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/index.d.ts +20 -0
- package/index.js +20 -20
- package/package.json +2 -1
package/index.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export * from "./Command";
|
|
2
|
+
export * from "./Convar";
|
|
3
|
+
export * from "./GlobalData";
|
|
4
|
+
export * from "./Kvp";
|
|
5
|
+
export * from "./Resource";
|
|
6
|
+
export * from "./types";
|
|
7
|
+
export * from "./utils/ClassTypes";
|
|
8
|
+
export * from "./utils/Color";
|
|
9
|
+
export * from "./utils/Delay";
|
|
10
|
+
export * from "./utils/Maths";
|
|
11
|
+
export * from "./utils/Point";
|
|
12
|
+
export * from "./utils/PointF";
|
|
13
|
+
export * from "./utils/Quaternion";
|
|
14
|
+
export * from "./utils/Vector";
|
|
15
|
+
export * from "./utils/cleanPlayerName";
|
|
16
|
+
export * from "./utils/enumValues";
|
|
17
|
+
export * from "./utils/getStringFromUInt8Array";
|
|
18
|
+
export * from "./utils/getUInt32FromUint8Array";
|
|
19
|
+
export * from "./net/NetworkedMap";
|
|
20
|
+
export * from "./decors/Events";
|
package/index.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export * from "./Command
|
|
2
|
-
export * from "./Convar
|
|
3
|
-
export * from "./GlobalData
|
|
4
|
-
export * from "./Kvp
|
|
5
|
-
export * from "./Resource
|
|
6
|
-
export * from "./types
|
|
7
|
-
export * from "./utils/ClassTypes
|
|
8
|
-
export * from "./utils/Color
|
|
9
|
-
export * from "./utils/Delay
|
|
10
|
-
export * from "./utils/Maths
|
|
11
|
-
export * from "./utils/Point
|
|
12
|
-
export * from "./utils/PointF
|
|
13
|
-
export * from "./utils/Quaternion
|
|
14
|
-
export * from "./utils/Vector
|
|
15
|
-
export * from "./utils/cleanPlayerName
|
|
16
|
-
export * from "./utils/enumValues
|
|
17
|
-
export * from "./utils/getStringFromUInt8Array
|
|
18
|
-
export * from "./utils/getUInt32FromUint8Array
|
|
19
|
-
export * from "./net/NetworkedMap
|
|
20
|
-
export * from "./decors/Events
|
|
1
|
+
export * from "./Command";
|
|
2
|
+
export * from "./Convar";
|
|
3
|
+
export * from "./GlobalData";
|
|
4
|
+
export * from "./Kvp";
|
|
5
|
+
export * from "./Resource";
|
|
6
|
+
export * from "./types";
|
|
7
|
+
export * from "./utils/ClassTypes";
|
|
8
|
+
export * from "./utils/Color";
|
|
9
|
+
export * from "./utils/Delay";
|
|
10
|
+
export * from "./utils/Maths";
|
|
11
|
+
export * from "./utils/Point";
|
|
12
|
+
export * from "./utils/PointF";
|
|
13
|
+
export * from "./utils/Quaternion";
|
|
14
|
+
export * from "./utils/Vector";
|
|
15
|
+
export * from "./utils/cleanPlayerName";
|
|
16
|
+
export * from "./utils/enumValues";
|
|
17
|
+
export * from "./utils/getStringFromUInt8Array";
|
|
18
|
+
export * from "./utils/getUInt32FromUint8Array";
|
|
19
|
+
export * from "./net/NetworkedMap";
|
|
20
|
+
export * from "./decors/Events";
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
],
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"type": "module",
|
|
11
|
-
"version": "0.0.
|
|
11
|
+
"version": "0.0.83",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
14
|
"url": "https://github.com/nativewrappers/nativewrappers.git"
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"./**/*.d.ts"
|
|
30
30
|
],
|
|
31
31
|
"exports": {
|
|
32
|
+
".": "./index.js",
|
|
32
33
|
"./*": "./*"
|
|
33
34
|
}
|
|
34
35
|
}
|