@xiaoguomeiyitian/core 1.2.10 → 1.2.11
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/dist/lib_linux_20.jsc +0 -0
- package/dist/lib_linux_22.jsc +0 -0
- package/dist/lib_win32_20.jsc +0 -0
- package/dist/lib_win32_22.jsc +0 -0
- package/package.json +2 -2
- package/types/lib.d.ts +2 -2
package/dist/lib_linux_20.jsc
CHANGED
Binary file
|
package/dist/lib_linux_22.jsc
CHANGED
Binary file
|
package/dist/lib_win32_20.jsc
CHANGED
Binary file
|
package/dist/lib_win32_22.jsc
CHANGED
Binary file
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@xiaoguomeiyitian/core",
|
3
|
-
"version": "1.2.
|
3
|
+
"version": "1.2.11",
|
4
4
|
"main": "dist/index.js",
|
5
5
|
"types": "types/lib.d.ts",
|
6
6
|
"bin": {
|
@@ -27,7 +27,7 @@
|
|
27
27
|
},
|
28
28
|
"dependencies": {
|
29
29
|
"@xiaoguomeiyitian/utils": "^0.1.2",
|
30
|
-
"bytenode": "^1.5.
|
30
|
+
"bytenode": "^1.5.7",
|
31
31
|
"classic-level": "^2.0.0",
|
32
32
|
"tsrpc": "^3.4.17"
|
33
33
|
}
|
package/types/lib.d.ts
CHANGED
@@ -72,11 +72,11 @@ export declare class Entity {
|
|
72
72
|
flush(): Promise<void>;
|
73
73
|
/**销毁 */
|
74
74
|
destroy(): Promise<void>;
|
75
|
-
/**添加定时器 */
|
75
|
+
/**添加定时器 time ms 毫秒 */
|
76
76
|
addOneLoop(funcName: Function, time: number): number;
|
77
77
|
/**清除定时器 */
|
78
78
|
clearOneLoop(timeId: number): void;
|
79
|
-
/**添加循环 */
|
79
|
+
/**添加循环 time ms 毫秒 */
|
80
80
|
addLoop(funcName: Function, time: number): number;
|
81
81
|
/**清除循环 */
|
82
82
|
clearLoop(timeId: number): void;
|