@taxcore/hackjs 0.0.4 → 0.0.5

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.
@@ -3,5 +3,5 @@ export interface ServerPlugin {
3
3
  readonly name: string;
4
4
  readonly guid: string;
5
5
  }
6
- export declare const plugins: ServerPlugin[];
7
- export declare function Plugin(): (target: ServerPlugin) => void;
6
+ export declare const plugins: (new () => ServerPlugin)[];
7
+ export declare function Plugin(): (target: new () => ServerPlugin) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taxcore/hackjs",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "packageManager": "yarn@4.6.0",
5
5
  "publishConfig": {
6
6
  "access": "public"