@nativewrappers/fivem 0.0.145 → 0.0.146

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/index.d.ts CHANGED
@@ -172,7 +172,6 @@ export * from "./common-game/definitions/index.d";
172
172
  export * from "./common-game/definitions/redm.d";
173
173
  export * from "./common-game/cfx/StateBagChangeHandler";
174
174
  export * from "./common-game/cfx/cfx";
175
- export * from "./common/BaseScript";
176
175
  export * from "./common/Command";
177
176
  export * from "./common/Convar";
178
177
  export * from "./common/GlobalData";
package/index.js CHANGED
@@ -172,7 +172,6 @@ export * from "./common-game/definitions/index.d";
172
172
  export * from "./common-game/definitions/redm.d";
173
173
  export * from "./common-game/cfx/StateBagChangeHandler";
174
174
  export * from "./common-game/cfx/cfx";
175
- export * from "./common/BaseScript";
176
175
  export * from "./common/Command";
177
176
  export * from "./common/Convar";
178
177
  export * from "./common/GlobalData";
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  ],
9
9
  "license": "MIT",
10
10
  "type": "module",
11
- "version": "0.0.145",
11
+ "version": "0.0.146",
12
12
  "repository": {
13
13
  "type": "git",
14
14
  "url": "https://github.com/nativewrappers/nativewrappers.git"
@@ -1,2 +0,0 @@
1
- export declare abstract class BaseScript {
2
- }
@@ -1,10 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
- class BaseScript {
4
- static {
5
- __name(this, "BaseScript");
6
- }
7
- }
8
- export {
9
- BaseScript
10
- };