@hyext/types-ext-sdk-hy 3.17.0-beta.6 → 3.17.0-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.
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9664,8 +9664,8 @@ type LaunchYYBCloudGameReq = {
|
|
|
9664
9664
|
* @property [needUseCustomLoadingUI] - 是否使用自定义加载页面, 1-是, 0-否
|
|
9665
9665
|
* @property [loadBgUrl] - 加载过程的背景url
|
|
9666
9666
|
* @property [loadMsg] - 加载过程的文案
|
|
9667
|
-
* @property [needObserPerformance] -
|
|
9668
|
-
* @property [
|
|
9667
|
+
* @property [needObserPerformance] - 是否需要监听性能数据, 1-是, 0-否
|
|
9668
|
+
* @property [performanceFrequency] - 性能数据回调频控,单位秒
|
|
9669
9669
|
*/
|
|
9670
9670
|
type StartYYBCloudGameReq = {
|
|
9671
9671
|
bizIdDev: string;
|
|
@@ -9677,9 +9677,9 @@ type StartYYBCloudGameReq = {
|
|
|
9677
9677
|
gameIconUrl: string;
|
|
9678
9678
|
needUseCustomLoadingUI?: number;
|
|
9679
9679
|
loadBgUrl?: string;
|
|
9680
|
-
loadMsg?:
|
|
9680
|
+
loadMsg?: string;
|
|
9681
9681
|
needObserPerformance?: number;
|
|
9682
|
-
|
|
9682
|
+
performanceFrequency?: number;
|
|
9683
9683
|
};
|
|
9684
9684
|
|
|
9685
9685
|
/**
|