@xiaoguomeiyitian/core 1.3.2 → 1.3.3

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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xiaoguomeiyitian/core",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "types/lib.d.ts",
6
6
  "bin": {
package/types/lib.d.ts CHANGED
@@ -37,6 +37,8 @@ export declare class Global {
37
37
  loadfile(filePath: string, reChain?: boolean, reload?: boolean): Promise<void>;
38
38
  /**保存之前没有保存的dump数据*/
39
39
  flushDumpData(): Promise<void>;
40
+ /** 执行临时补丁脚本 */
41
+ runPatch(patchName: string, ...args: any[]): Promise<any>;
40
42
  /** 获取V8 CPU调用统计信息,默认统计10秒钟 cwd/profile.cpuprofile*/
41
43
  profiler(time?: number): void;
42
44
  /** 获取V8 GC统计信息,默认统计10秒钟 */
@@ -92,6 +94,7 @@ export declare class Entity {
92
94
  onDestroy(): void;
93
95
  }
94
96
  export declare class GenEntityDefs {
97
+ ts: any;
95
98
  gen(filePath: string): void;
96
99
  }
97
100
  export declare class GenServiceFunc {