@nativewrappers/redm 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 +52 -0
  2. package/index.js +52 -0
  3. package/package.json +2 -1
package/index.d.ts ADDED
@@ -0,0 +1,52 @@
1
+ export * from "./Attribute";
2
+ export * from "./Controls";
3
+ export * from "./Game";
4
+ export * from "./GameConstants";
5
+ export * from "./Model";
6
+ export * from "./RawControls";
7
+ export * from "./RelationshipGroup";
8
+ export * from "./Volume";
9
+ export * from "./world/createDraftVehicle";
10
+ export * from "./world/createPed";
11
+ export * from "./world/createProp";
12
+ export * from "./world/createVehicle";
13
+ export * from "./utils/Native";
14
+ export * from "./types/Throwable";
15
+ export * from "./interfaces/Dimensions";
16
+ export * from "./enums/Attributes";
17
+ export * from "./enums/Entity";
18
+ export * from "./enums/Keys";
19
+ export * from "./enums/Ped";
20
+ export * from "./enums/RawKeys";
21
+ export * from "./enums/Relationship";
22
+ export * from "./enums/VehicleSeat";
23
+ export * from "./entities/BaseEntity";
24
+ export * from "./entities/Entity";
25
+ export * from "./entities/Ped";
26
+ export * from "./entities/Pickup";
27
+ export * from "./entities/Player";
28
+ export * from "./entities/Prop";
29
+ export * from "./entities/Vehicle";
30
+ export * from "./definitions/Citizen.d";
31
+ export * from "./definitions/index.d";
32
+ export * from "./definitions/redm.d";
33
+ export * from "./common/Command";
34
+ export * from "./common/Convar";
35
+ export * from "./common/GlobalData";
36
+ export * from "./common/Kvp";
37
+ export * from "./common/Resource";
38
+ export * from "./common/types";
39
+ export * from "./common/utils/ClassTypes";
40
+ export * from "./common/utils/Color";
41
+ export * from "./common/utils/Delay";
42
+ export * from "./common/utils/Maths";
43
+ export * from "./common/utils/Point";
44
+ export * from "./common/utils/PointF";
45
+ export * from "./common/utils/Quaternion";
46
+ export * from "./common/utils/Vector";
47
+ export * from "./common/utils/cleanPlayerName";
48
+ export * from "./common/utils/enumValues";
49
+ export * from "./common/utils/getStringFromUInt8Array";
50
+ export * from "./common/utils/getUInt32FromUint8Array";
51
+ export * from "./common/net/NetworkedMap";
52
+ export * from "./common/decors/Events";
package/index.js ADDED
@@ -0,0 +1,52 @@
1
+ export * from "./Attribute";
2
+ export * from "./Controls";
3
+ export * from "./Game";
4
+ export * from "./GameConstants";
5
+ export * from "./Model";
6
+ export * from "./RawControls";
7
+ export * from "./RelationshipGroup";
8
+ export * from "./Volume";
9
+ export * from "./world/createDraftVehicle";
10
+ export * from "./world/createPed";
11
+ export * from "./world/createProp";
12
+ export * from "./world/createVehicle";
13
+ export * from "./utils/Native";
14
+ export * from "./types/Throwable";
15
+ export * from "./interfaces/Dimensions";
16
+ export * from "./enums/Attributes";
17
+ export * from "./enums/Entity";
18
+ export * from "./enums/Keys";
19
+ export * from "./enums/Ped";
20
+ export * from "./enums/RawKeys";
21
+ export * from "./enums/Relationship";
22
+ export * from "./enums/VehicleSeat";
23
+ export * from "./entities/BaseEntity";
24
+ export * from "./entities/Entity";
25
+ export * from "./entities/Ped";
26
+ export * from "./entities/Pickup";
27
+ export * from "./entities/Player";
28
+ export * from "./entities/Prop";
29
+ export * from "./entities/Vehicle";
30
+ export * from "./definitions/Citizen.d";
31
+ export * from "./definitions/index.d";
32
+ export * from "./definitions/redm.d";
33
+ export * from "./common/Command";
34
+ export * from "./common/Convar";
35
+ export * from "./common/GlobalData";
36
+ export * from "./common/Kvp";
37
+ export * from "./common/Resource";
38
+ export * from "./common/types";
39
+ export * from "./common/utils/ClassTypes";
40
+ export * from "./common/utils/Color";
41
+ export * from "./common/utils/Delay";
42
+ export * from "./common/utils/Maths";
43
+ export * from "./common/utils/Point";
44
+ export * from "./common/utils/PointF";
45
+ export * from "./common/utils/Quaternion";
46
+ export * from "./common/utils/Vector";
47
+ export * from "./common/utils/cleanPlayerName";
48
+ export * from "./common/utils/enumValues";
49
+ export * from "./common/utils/getStringFromUInt8Array";
50
+ export * from "./common/utils/getUInt32FromUint8Array";
51
+ export * from "./common/net/NetworkedMap";
52
+ export * from "./common/decors/Events";
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
  }