@nativewrappers/common 0.0.126 → 0.0.127
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/common-game/CommonGameConstants.d.ts +7 -0
- package/common-game/CommonGameConstants.js +24 -0
- package/common-game/CommonModel.d.ts +99 -0
- package/common-game/CommonModel.js +172 -0
- package/common-game/CommonTasks.d.ts +44 -0
- package/common-game/CommonTasks.js +233 -0
- package/common-game/cfx/StateBagChangeHandler.d.ts +1 -0
- package/common-game/cfx/StateBagChangeHandler.js +0 -0
- package/common-game/cfx/cfx.d.ts +6 -0
- package/common-game/cfx/cfx.js +4 -0
- package/common-game/common/Command.d.ts +77 -0
- package/common-game/common/Command.js +152 -0
- package/common-game/common/Convar.d.ts +13 -0
- package/common-game/common/Convar.js +58 -0
- package/common-game/common/GlobalData.d.ts +12 -0
- package/common-game/common/GlobalData.js +20 -0
- package/common-game/common/Kvp.d.ts +69 -0
- package/common-game/common/Kvp.js +137 -0
- package/common-game/common/Resource.d.ts +14 -0
- package/common-game/common/Resource.js +54 -0
- package/common-game/common/decors/ConVar.d.ts +14 -0
- package/common-game/common/decors/ConVar.js +70 -0
- package/common-game/common/decors/Events.d.ts +66 -0
- package/common-game/common/decors/Events.js +163 -0
- package/common-game/common/decors/Exports.d.ts +1 -0
- package/common-game/common/decors/Exports.js +53 -0
- package/common-game/common/decors/Permissions.d.ts +3 -0
- package/common-game/common/decors/Permissions.js +49 -0
- package/common-game/common/decors/Resources.d.ts +8 -0
- package/common-game/common/decors/Resources.js +94 -0
- package/common-game/common/decors/Ticks.d.ts +9 -0
- package/common-game/common/decors/Ticks.js +32 -0
- package/common-game/common/net/NetworkedMap.d.ts +28 -0
- package/common-game/common/net/NetworkedMap.js +225 -0
- package/common-game/common/types.d.ts +5 -0
- package/common-game/common/types.js +0 -0
- package/common-game/common/utils/ClassTypes.d.ts +11 -0
- package/common-game/common/utils/ClassTypes.js +15 -0
- package/common-game/common/utils/Color.d.ts +14 -0
- package/common-game/common/utils/Color.js +33 -0
- package/common-game/common/utils/Delay.d.ts +1 -0
- package/common-game/common/utils/Delay.js +6 -0
- package/common-game/common/utils/Maths.d.ts +4 -0
- package/common-game/common/utils/Maths.js +18 -0
- package/common-game/common/utils/Point.d.ts +9 -0
- package/common-game/common/utils/Point.js +36 -0
- package/common-game/common/utils/PointF.d.ts +7 -0
- package/common-game/common/utils/PointF.js +18 -0
- package/common-game/common/utils/Quaternion.d.ts +10 -0
- package/common-game/common/utils/Quaternion.js +33 -0
- package/common-game/common/utils/Vector.d.ts +429 -0
- package/common-game/common/utils/Vector.js +589 -0
- package/common-game/common/utils/cleanPlayerName.d.ts +6 -0
- package/common-game/common/utils/cleanPlayerName.js +17 -0
- package/common-game/common/utils/enumValues.d.ts +12 -0
- package/common-game/common/utils/enumValues.js +20 -0
- package/common-game/common/utils/getStringFromUInt8Array.d.ts +8 -0
- package/common-game/common/utils/getStringFromUInt8Array.js +6 -0
- package/common-game/common/utils/getUInt32FromUint8Array.d.ts +8 -0
- package/common-game/common/utils/getUInt32FromUint8Array.js +6 -0
- package/common-game/common/utils/randomInt.d.ts +1 -0
- package/common-game/common/utils/randomInt.js +9 -0
- package/common-game/definitions/index.d.js +0 -0
- package/common-game/definitions/redm.d.js +0 -0
- package/common-game/entities/CommonBaseEntity.d.ts +116 -0
- package/common-game/entities/CommonBaseEntity.js +266 -0
- package/common-game/entities/CommonBaseEntityBone.d.ts +11 -0
- package/common-game/entities/CommonBaseEntityBone.js +32 -0
- package/common-game/entities/CommonBaseEntityBoneCollection.d.ts +9 -0
- package/common-game/entities/CommonBaseEntityBoneCollection.js +17 -0
- package/common-game/entities/CommonEntityBone.d.ts +5 -0
- package/common-game/entities/CommonEntityBone.js +14 -0
- package/common-game/entities/CommonEntityBoneCollection.d.ts +9 -0
- package/common-game/entities/CommonEntityBoneCollection.js +24 -0
- package/common-game/entities/CommonEntityType.d.ts +4 -0
- package/common-game/entities/CommonEntityType.js +0 -0
- package/common-game/entities/CommonPed.d.ts +16 -0
- package/common-game/entities/CommonPed.js +52 -0
- package/common-game/entities/CommonPedBone.d.ts +6 -0
- package/common-game/entities/CommonPedBone.js +17 -0
- package/common-game/entities/CommonPedBoneCollection.d.ts +10 -0
- package/common-game/entities/CommonPedBoneCollection.js +31 -0
- package/common-game/entities/CommonPlayer.d.ts +61 -0
- package/common-game/entities/CommonPlayer.js +156 -0
- package/common-game/entities/CommonProp.d.ts +15 -0
- package/common-game/entities/CommonProp.js +43 -0
- package/common-game/entities/CommonVehicle.d.ts +11 -0
- package/common-game/entities/CommonVehicle.js +36 -0
- package/common-game/entities/GetEntityClassIdFromHandle.d.ts +2 -0
- package/common-game/entities/GetEntityClassIdFromHandle.js +23 -0
- package/common-game/entities/IHandle.d.ts +6 -0
- package/common-game/entities/IHandle.js +20 -0
- package/common-game/enums/VehicleSeat.d.ts +13 -0
- package/common-game/enums/VehicleSeat.js +17 -0
- package/common-game/index.d.ts +50 -0
- package/common-game/index.js +50 -0
- package/common-game/interfaces/Dimension.d.ts +5 -0
- package/common-game/interfaces/Dimension.js +0 -0
- package/common-game/utils/Animations.d.ts +19 -0
- package/common-game/utils/Animations.js +43 -0
- package/index.d.ts +52 -1
- package/index.js +52 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -23,4 +23,55 @@ export * from "./decors/Events";
|
|
|
23
23
|
export * from "./decors/Exports";
|
|
24
24
|
export * from "./decors/Permissions";
|
|
25
25
|
export * from "./decors/Resources";
|
|
26
|
-
export * from "./decors/Ticks";
|
|
26
|
+
export * from "./decors/Ticks";
|
|
27
|
+
export * from "./common-game/CommonGameConstants";
|
|
28
|
+
export * from "./common-game/CommonModel";
|
|
29
|
+
export * from "./common-game/CommonTasks";
|
|
30
|
+
export * from "./common-game/index";
|
|
31
|
+
export * from "./common-game/utils/Animations";
|
|
32
|
+
export * from "./common-game/interfaces/Dimension";
|
|
33
|
+
export * from "./common-game/enums/VehicleSeat";
|
|
34
|
+
export * from "./common-game/entities/CommonBaseEntity";
|
|
35
|
+
export * from "./common-game/entities/CommonBaseEntityBone";
|
|
36
|
+
export * from "./common-game/entities/CommonBaseEntityBoneCollection";
|
|
37
|
+
export * from "./common-game/entities/CommonEntityBone";
|
|
38
|
+
export * from "./common-game/entities/CommonEntityBoneCollection";
|
|
39
|
+
export * from "./common-game/entities/CommonEntityType";
|
|
40
|
+
export * from "./common-game/entities/CommonPed";
|
|
41
|
+
export * from "./common-game/entities/CommonPedBone";
|
|
42
|
+
export * from "./common-game/entities/CommonPedBoneCollection";
|
|
43
|
+
export * from "./common-game/entities/CommonPlayer";
|
|
44
|
+
export * from "./common-game/entities/CommonProp";
|
|
45
|
+
export * from "./common-game/entities/CommonVehicle";
|
|
46
|
+
export * from "./common-game/entities/GetEntityClassIdFromHandle";
|
|
47
|
+
export * from "./common-game/entities/IHandle";
|
|
48
|
+
export * from "./common-game/definitions/index.d";
|
|
49
|
+
export * from "./common-game/definitions/redm.d";
|
|
50
|
+
export * from "./common-game/common/Command";
|
|
51
|
+
export * from "./common-game/common/Convar";
|
|
52
|
+
export * from "./common-game/common/GlobalData";
|
|
53
|
+
export * from "./common-game/common/Kvp";
|
|
54
|
+
export * from "./common-game/common/Resource";
|
|
55
|
+
export * from "./common-game/common/types";
|
|
56
|
+
export * from "./common-game/common/utils/ClassTypes";
|
|
57
|
+
export * from "./common-game/common/utils/Color";
|
|
58
|
+
export * from "./common-game/common/utils/Delay";
|
|
59
|
+
export * from "./common-game/common/utils/Maths";
|
|
60
|
+
export * from "./common-game/common/utils/Point";
|
|
61
|
+
export * from "./common-game/common/utils/PointF";
|
|
62
|
+
export * from "./common-game/common/utils/Quaternion";
|
|
63
|
+
export * from "./common-game/common/utils/Vector";
|
|
64
|
+
export * from "./common-game/common/utils/cleanPlayerName";
|
|
65
|
+
export * from "./common-game/common/utils/enumValues";
|
|
66
|
+
export * from "./common-game/common/utils/getStringFromUInt8Array";
|
|
67
|
+
export * from "./common-game/common/utils/getUInt32FromUint8Array";
|
|
68
|
+
export * from "./common-game/common/utils/randomInt";
|
|
69
|
+
export * from "./common-game/common/net/NetworkedMap";
|
|
70
|
+
export * from "./common-game/common/decors/ConVar";
|
|
71
|
+
export * from "./common-game/common/decors/Events";
|
|
72
|
+
export * from "./common-game/common/decors/Exports";
|
|
73
|
+
export * from "./common-game/common/decors/Permissions";
|
|
74
|
+
export * from "./common-game/common/decors/Resources";
|
|
75
|
+
export * from "./common-game/common/decors/Ticks";
|
|
76
|
+
export * from "./common-game/cfx/StateBagChangeHandler";
|
|
77
|
+
export * from "./common-game/cfx/cfx";
|