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