@hyext/types-ext-sdk-hy 3.11.2-beta.5 → 3.11.2-beta.7

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.
Files changed (2) hide show
  1. package/index.d.ts +3 -3
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -3117,12 +3117,12 @@ namespace exe {
3117
3117
  * @param params - 参数
3118
3118
  * @returns 返回操作结果
3119
3119
  */
3120
- function startGame(params: ExeStartGameReq): Promise<void>;
3120
+ function launchGame(params: ExeLaunchGameReq): Promise<void>;
3121
3121
  /**
3122
3122
  * 停止Game
3123
3123
  * @returns 返回操作结果
3124
3124
  */
3125
- function stopGame(): Promise<void>;
3125
+ function shutdownGame(): Promise<void>;
3126
3126
  /**
3127
3127
  * 发送消息至Game
3128
3128
  * @param params - 参数
@@ -3158,7 +3158,7 @@ type ExeInitGameEnvReq = {
3158
3158
  * @property [exeParams] - game exe的启动参数(可选)
3159
3159
  * @property [optParams] - 预留参数(可选)
3160
3160
  */
3161
- type ExeStartGameReq = {
3161
+ type ExeLaunchGameReq = {
3162
3162
  processMode?: string;
3163
3163
  md5: string;
3164
3164
  exeName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyext/types-ext-sdk-hy",
3
- "version": "3.11.2-beta.5",
3
+ "version": "3.11.2-beta.7",
4
4
  "description": "TypeScript definitions for @hyext/ext-sdk-hy",
5
5
  "types": "./index.d.ts",
6
6
  "main": "",