tiaoom 0.0.24 → 0.0.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tiaoom",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "",
5
5
  "main": "./src/index.cjs",
6
6
  "module": "./src/index.mjs",
package/src/index.d.cts CHANGED
@@ -450,9 +450,9 @@ interface RoomEvents extends BaseEvents {
450
450
  }) => void;
451
451
  /**
452
452
  * 玩家发送的房间命令
453
- * @param {IMessagePackage} message 命令内容
453
+ * @param {any} message 命令内容
454
454
  */
455
- 'player-command': (message: IMessagePackage) => void;
455
+ 'player-command': (message: any) => void;
456
456
  /**
457
457
  * 房间命令
458
458
  * @param {IMessagePackage} message 命令内容
package/src/index.d.mts CHANGED
@@ -450,9 +450,9 @@ interface RoomEvents extends BaseEvents {
450
450
  }) => void;
451
451
  /**
452
452
  * 玩家发送的房间命令
453
- * @param {IMessagePackage} message 命令内容
453
+ * @param {any} message 命令内容
454
454
  */
455
- 'player-command': (message: IMessagePackage) => void;
455
+ 'player-command': (message: any) => void;
456
456
  /**
457
457
  * 房间命令
458
458
  * @param {IMessagePackage} message 命令内容