@nativewrappers/server 0.0.81 → 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.
Files changed (3) hide show
  1. package/index.d.ts +36 -0
  2. package/index.js +36 -0
  3. package/package.json +2 -1
package/index.d.ts ADDED
@@ -0,0 +1,36 @@
1
+ export * from "./Game";
2
+ export * from "./type/Anticheat";
3
+ export * from "./type/Hash";
4
+ export * from "./enum/OrphanMode";
5
+ export * from "./enum/PopulationType";
6
+ export * from "./enum/VehicleLockStatus";
7
+ export * from "./enum/VehicleType";
8
+ export * from "./enum/eEntityType";
9
+ export * from "./entities/BaseEntity";
10
+ export * from "./entities/Entity";
11
+ export * from "./entities/Ped";
12
+ export * from "./entities/Player";
13
+ export * from "./entities/Prop";
14
+ export * from "./entities/Vehicle";
15
+ export * from "./common/Command";
16
+ export * from "./common/Convar";
17
+ export * from "./common/GlobalData";
18
+ export * from "./common/Kvp";
19
+ export * from "./common/Resource";
20
+ export * from "./common/types";
21
+ export * from "./common/utils/ClassTypes";
22
+ export * from "./common/utils/Color";
23
+ export * from "./common/utils/Delay";
24
+ export * from "./common/utils/Maths";
25
+ export * from "./common/utils/Point";
26
+ export * from "./common/utils/PointF";
27
+ export * from "./common/utils/Quaternion";
28
+ export * from "./common/utils/Vector";
29
+ export * from "./common/utils/cleanPlayerName";
30
+ export * from "./common/utils/enumValues";
31
+ export * from "./common/utils/getStringFromUInt8Array";
32
+ export * from "./common/utils/getUInt32FromUint8Array";
33
+ export * from "./common/net/NetworkedMap";
34
+ export * from "./common/decors/Events";
35
+ export * from "./cfx/StateBagChangeHandler";
36
+ export * from "./cfx/index";
package/index.js ADDED
@@ -0,0 +1,36 @@
1
+ export * from "./Game";
2
+ export * from "./type/Anticheat";
3
+ export * from "./type/Hash";
4
+ export * from "./enum/OrphanMode";
5
+ export * from "./enum/PopulationType";
6
+ export * from "./enum/VehicleLockStatus";
7
+ export * from "./enum/VehicleType";
8
+ export * from "./enum/eEntityType";
9
+ export * from "./entities/BaseEntity";
10
+ export * from "./entities/Entity";
11
+ export * from "./entities/Ped";
12
+ export * from "./entities/Player";
13
+ export * from "./entities/Prop";
14
+ export * from "./entities/Vehicle";
15
+ export * from "./common/Command";
16
+ export * from "./common/Convar";
17
+ export * from "./common/GlobalData";
18
+ export * from "./common/Kvp";
19
+ export * from "./common/Resource";
20
+ export * from "./common/types";
21
+ export * from "./common/utils/ClassTypes";
22
+ export * from "./common/utils/Color";
23
+ export * from "./common/utils/Delay";
24
+ export * from "./common/utils/Maths";
25
+ export * from "./common/utils/Point";
26
+ export * from "./common/utils/PointF";
27
+ export * from "./common/utils/Quaternion";
28
+ export * from "./common/utils/Vector";
29
+ export * from "./common/utils/cleanPlayerName";
30
+ export * from "./common/utils/enumValues";
31
+ export * from "./common/utils/getStringFromUInt8Array";
32
+ export * from "./common/utils/getUInt32FromUint8Array";
33
+ export * from "./common/net/NetworkedMap";
34
+ export * from "./common/decors/Events";
35
+ export * from "./cfx/StateBagChangeHandler";
36
+ export * from "./cfx/index";
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  ],
9
9
  "license": "MIT",
10
10
  "type": "module",
11
- "version": "0.0.81",
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
  }