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