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