@xiaoguomeiyitian/core 2.0.2 → 2.0.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.
- package/dist/lib_darwin_22.jsc +0 -0
- package/dist/lib_darwin_24.jsc +0 -0
- package/dist/lib_linux_22.jsc +0 -0
- package/dist/lib_linux_24.jsc +0 -0
- package/dist/lib_win32_22.jsc +0 -0
- package/dist/lib_win32_24.jsc +0 -0
- package/package.json +1 -1
- package/types/lib.d.ts +4 -2
package/dist/lib_darwin_22.jsc
CHANGED
|
Binary file
|
package/dist/lib_darwin_24.jsc
CHANGED
|
Binary file
|
package/dist/lib_linux_22.jsc
CHANGED
|
Binary file
|
package/dist/lib_linux_24.jsc
CHANGED
|
Binary file
|
package/dist/lib_win32_22.jsc
CHANGED
|
Binary file
|
package/dist/lib_win32_24.jsc
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/types/lib.d.ts
CHANGED
|
@@ -60,8 +60,10 @@ export declare class Global {
|
|
|
60
60
|
outputGC(threshold?: number, durationMs?: number): void;
|
|
61
61
|
}
|
|
62
62
|
export declare class Entity {
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
/** 实体类型 */
|
|
64
|
+
type: string;
|
|
65
|
+
/** 实体id */
|
|
66
|
+
id: string;
|
|
65
67
|
/** 连接列表 */
|
|
66
68
|
conns: WsConnection[];
|
|
67
69
|
constructor(type: string, id?: string);
|