@nativewrappers/common 0.0.124 → 0.0.125

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.
@@ -5,4 +5,4 @@ export declare function OnResourceStart(resource?: string): (originalMethod: any
5
5
  /**
6
6
  * Called whenever the specified resource is stopped.
7
7
  */
8
- export declare function OnResoureStop(resource?: string): (originalMethod: any, context: ClassMethodDecoratorContext) => void;
8
+ export declare function OnResourceStop(resource?: string): (originalMethod: any, context: ClassMethodDecoratorContext) => void;
@@ -73,7 +73,7 @@ function OnResourceStart(resource = GetCurrentResourceName()) {
73
73
  }, "actualDecorator");
74
74
  }
75
75
  __name(OnResourceStart, "OnResourceStart");
76
- function OnResoureStop(resource = GetCurrentResourceName()) {
76
+ function OnResourceStop(resource = GetCurrentResourceName()) {
77
77
  return /* @__PURE__ */ __name(function actualDecorator(originalMethod, context) {
78
78
  if (context.private) {
79
79
  throw new Error("OnResourceStop does not work on private types, please mark the field as public");
@@ -87,8 +87,8 @@ function OnResoureStop(resource = GetCurrentResourceName()) {
87
87
  }
88
88
  }, "actualDecorator");
89
89
  }
90
- __name(OnResoureStop, "OnResoureStop");
90
+ __name(OnResourceStop, "OnResourceStop");
91
91
  export {
92
92
  OnResourceStart,
93
- OnResoureStop
93
+ OnResourceStop
94
94
  };
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  ],
9
9
  "license": "MIT",
10
10
  "type": "module",
11
- "version": "0.0.124",
11
+ "version": "0.0.125",
12
12
  "repository": {
13
13
  "type": "git",
14
14
  "url": "https://github.com/nativewrappers/nativewrappers.git"